<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue学习</title>
<script src="../lib/vue2/vue.js"></script>
</head>
<body>
<div id="app">
<hellocmp></hellocmp>
<hellocmp></hellocmp>
<hellocmp></hellocmp>
</div>
<script type="text/javascript">
// 阻止 vue 在启动时生成生产提示
Vue.config.productionTip = false
// 定义组件
const hellocmp = Vue.extend({
template: `
<div>
<h1>{{msg}}</h1>
</div>
`,
data() {
return {
msg: 'Hello World'
}
}
})
const vm = new Vue({
data() {
return {
}
},
// 注册组件(局部注册)
components: {
// "hellocmp": hellocmp
},
})
//注册全局组件
Vue.component("hellocmp", hellocmp)
vm.$mount('#app')
</script>
</body>
</html>