1 Star 0 Fork 1

做棵大树/Vue-Learn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Vue17.2组件-组件的创建方式2.html 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
做棵大树 提交于 2019-03-31 23:24 . Vue 组件的使用
<!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标签的形式引入页面即可 -->
<mycomp2></mycomp2>
</div>
<script>
Vue.component("mycomp2", {
// Attention: 无论是那种方式创建的组件,组件的 template 属性指向的模板内容,必须有且只有一个唯一的根元素
// template: "<h3>这是直接使用Vue.component创建的组件</h3><span>123</span>"
template: "<div><h3>这是直接使用Vue.component创建的组件</h3><span>123</span></div>"
})
var app = new Vue({
el: "#app",
data: {
},
methods: {
name() {
},
},
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/BEATREEHERO/Vue-Learn.git
git@gitee.com:BEATREEHERO/Vue-Learn.git
BEATREEHERO
Vue-Learn
Vue-Learn
master

搜索帮助