Skip to content

Instantly share code, notes, and snippets.

@devjin0617
Last active February 12, 2017 14:59
Show Gist options
  • Save devjin0617/6d9cf46b0f819690792410adfa0a81c5 to your computer and use it in GitHub Desktop.
Save devjin0617/6d9cf46b0f819690792410adfa0a81c5 to your computer and use it in GitHub Desktop.
<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