加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
12.html 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
lm_mmmmm 提交于 2017-09-10 03:55 . html 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>子组件与父组件</title>
<script src="js/vue.js"></script>
</head>
<body>
<div id="app">
<my-hello></my-hello>
</div>
<template id='hello'>
<div>
<h3>我是Hello父组件</h3>
<h3>访问自己的数据 {{msg}},{{name}},{{age}},{{user.username}}</h3>
<hr>
<my-world :msg = 'msg' :name='name' :age='age' :user='user'></my-world>
</div>
</template>
<template id='world'>
<div>
<h3>我是World子组件</h3>
<h3>访问父组件的数据: {{msg}},{{name}},{{age}},{{user.username}}</h3>
</div>
</template>
<script>
var vm = new Vue({
el: '#app',
components: {
'my-hello': {
data() {
return {
msg: 'Hello',
name: 'tom',
age: 22,
user: { id: 11, username: "tang" }
}
},
template: '#hello',
components: {
'my-world': {
data(){
return{
sex:
}
},
template: '#world',
props:['msg','name','age','user']
}
}
}
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化