Skip to content

Instantly share code, notes, and snippets.

@johnsardine
Last active November 16, 2017 11:22
Show Gist options
  • Save johnsardine/96a02b1ea188b80938b59678b2789aa3 to your computer and use it in GitHub Desktop.
Save johnsardine/96a02b1ea188b80938b59678b2789aa3 to your computer and use it in GitHub Desktop.
1 - Connection Example
<div id="sidebar">
Welcome to {{ name }}
</div>
const Sidebar = new Vue({
el: '#sidebar',
data() {
return {
name: 'Sidebar',
};
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment