代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Vue 组件 | Vue.js</title>
<script src="libs/js/vue.js"></script>
</head>
<body>
<div id="app">
<!-- 如果要使用组件,直接,将组件的名称以html标签的形式引入页面即可 -->
<mycomp3></mycomp3>
</div>
<div id="app2">
<!-- 如果要使用组件,直接,将组件的名称以html标签的形式引入页面即可 -->
<mycomp3></mycomp3>
<login></login>
</div>
<!-- 在被控制的 #app 外部,使用 template 元素定义组件的 HMTL 模板结构 -->
<template id="templ">
<div>
<h1>这是通过 template 元素在外部定义的组件结构,这个方式,有代码提示和高亮</h1>
</div>
</template>
<template id="templ2">
<div>
<h1>私有组件</h1>
</div>
</template>
<script>
Vue.component("mycomp3", {
template: "#templ"
})
var app = new Vue({
el: "#app",
data: {
},
methods: {
name() {
},
},
})
var app2 = new Vue({
el: "#app2",
data: {},
methods: {},
filters: {}, // 定义私有过滤器
directives: {}, // 定义私有指令
components: { // 定义私有组件
login: { // login 是私有组件的名称
template: "#templ2" //"<h1>这是私有的组件</h1>"
}
},
beforeCreate(){},
created(){},
beforeMount(){},
mounted(){},
beforeUpdate(){},
updated(){},
beforeDestory(){},
destoryed(){}
})
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。