Muscardinus
Vue Component 본문
728x90
<div id="app">
<hello></hello>
<hello></hello>
<hello></hello>
</div>
let vm = Vue.createApp({});
vm.component('hello', {
template: `<h1>{{ message }}</h1>`,
data() {
return {
message: 'Hello world',
};
},
});
vm.mount('#app');
728x90
'FrontEnd > Vue' 카테고리의 다른 글
emit (0) | 2022.01.07 |
---|---|
Props (0) | 2022.01.07 |
Reactivity (0) | 2022.01.01 |
Virtual DOM (0) | 2022.01.01 |
Vue Life Cycle (0) | 2021.12.31 |
Comments