//html 상단에 cdn 추가
<script src=" https://unpkg.com/vue@next"></script>
<div id="app">
<h1>{{message}}</h1>
</div>
Vue.createApp({
data(){
return{
//반응성
message:'hello view'
}
}
}).mount('#app')
'프론트엔드 공부 > view' 카테고리의 다른 글
vue create createapp (0) | 2021.05.29 |
---|