2 Star 1 Fork 0

Tony Silver/vue.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ch-7.html 845 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lmu_Xuzl 提交于 2018-12-10 09:32 . 更新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue.js demo ch-7 component</title>
</head>
<body>
<div id="app">
<ol>
<!--
现在我们为每个 todo-item 提供 todo 对象
todo 对象是变量,即其内容可以是动态的。
我们也需要为每个组件提供一个“key”,稍后再
作详细解释。
-->
<todo-item v-bind:msg="msg" v-bind:num="num"
>
</todo-item>
</ol>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="./component.js"></script>
<script type="text/javascript">
Vue.component('todo-item', {
props:['msg','num'],
template: '<li>{{ msg }} --- {{ num }}</li>'
})
var app = new Vue({
el: '#app',
data: {
msg:"Vue hellod",
num:250
}
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/tonysilver/vue.js.git
git@gitee.com:tonysilver/vue.js.git
tonysilver
vue.js
vue.js
master

搜索帮助