vue.js入門_06_コンポーネント

by s9iwork

HTML

<div id="app">
  <hello-component></hello-component>
  <hello-component></hello-component>
  <hello-component></hello-component>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>

JavaScript

Vue.component('hello-component', {
	template: '<p>Hello Component</p>'
})

new Vue({
	el: '#app'
})