Last active
February 12, 2017 14:59
-
-
Save devjin0617/6d9cf46b0f819690792410adfa0a81c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="sender-app"> | |
<input v-model="text"> | |
<button @click="sender">sender</button> | |
<div v-if="receiveText">#sender-app: I sent a message a {{ receiveText }}</div> | |
</div> | |
<div id="receiver-app"> | |
<div v-if="text">#receiver-app: {{ text }}</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment