1 Star 0 Fork 1

zhangv/Vue-Learn

forked from 做棵大树/Vue-Learn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Vue06.html 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
做棵大树 提交于 2019-03-31 16:08 . VUE 计算属性至过滤器
<!DOCTYPE html>
<html lang="zh-CN">
<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.js</title>
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<h2>Vue.js 组件使用1</h2>
<div id="app-7">
<ol>
<!-- 创建一个 todo-item 组件的实例
<todo-item></todo-item> -->
<todo-item
v-for="item in groceryList"
v-bind:todo="item"
v-bind:key="item.id">
</todo-item>
</ol>
</div>
<script>
// //先定义VUE组件
// Vue.component('todo-item', {
// template: '<li>这是一个代办项</li>'
// })
// //在去指定实例化VUE对象
// var app7 = new Vue({
// el: "#app-7"
// })
Vue.component('todo-item',{
props: ['todo'],
template: '<li> {{ todo.text }} </li>'
})
var app7 = new Vue({
el: "#app-7",
data: {
groceryList: [
{ id: 0, text: '蔬菜' },
{ id: 1, text: '奶酪' },
{ id: 2, text: '花生' }
]
}
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhangvgit/Vue-Learn.git
git@gitee.com:zhangvgit/Vue-Learn.git
zhangvgit
Vue-Learn
Vue-Learn
master

搜索帮助