프론트엔드 공부/view
codepen에서 cdn으로 연습하기
maggieH
2021. 5. 29. 16:18
//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')