Skip to main content

Data binding

data

Set data for component with data() function which returns an object

App.vue
<script>
export default{
name: "App",
data() {
return{
msg: 'World!'
}
}
}
</script>

binding text

<p>Hello {{msg}}</p>

or using directive

<p v-text="msg"></p>