Skip to content

Instantly share code, notes, and snippets.

@A-Programmer
Created April 15, 2018 09:47
Show Gist options
  • Save A-Programmer/6ff00e510a46475b0e719686c49cd495 to your computer and use it in GitHub Desktop.
Save A-Programmer/6ff00e510a46475b0e719686c49cd495 to your computer and use it in GitHub Desktop.
vue data binding
<div id="vue-app">
<a v-bind:href="websiteTag">My Site<a/>
<br/>
<input v-bind:value="name"/>
</div>
new Vue ({
el: '#vue-app',
data: {
name: 'Kamran',
websiteTag: 'http://sadin.ir'
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.13/vue.min.js"></script>
body{
font-family:tahoma;
font-size:12px;
font-weight:bold;
line-height:26px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment