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>