https://vuejs.org/examples/#hello-world > Vue_JS 뷰

Vue_JS 뷰

Examples https://vuejs.org/examples/#hello-world

페이지 정보

본문

https://vuejs.org/examples/#hello-world 


---------------------


<!--

Say Hello World with Vue!

-->


<script>

export default {

  data() {

    return {

      message: 'Hello World!'

    }

  }

}

</script>


<template>

  <h1>{{ message }}</h1>

</template>