1 Star 0 Fork 22

wangyi/frontend-mvvm

forked from DEV-Edu/frontend-mvvm 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
TestVue.html 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
bangbangji 提交于 2021-08-05 12:29 . init
<!DOCTYPE html>
<html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml" xmlns:v-on="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.red {
color: red;
}
.blue {
color: blue;
}
</style>
</head>
<body>
<div id="test">
你好,
<span>{{content}}</span>
{{description}}
<ul>
<li v-for="(key) in list">
{{key.a}}: {{key.b}}
</li>
</ul>
<input type="text" v-model="obj.x" v-on:keydown="enter"/>
{{obj.x}}
<br/>
<img v-bind:src="imgSrc"/>
<br/>
<span v-bind:class="{red: obj.x < 2}">我的天啊</span>
<br/>
<span v-bind:class="haha">我的地啊</span>
</div>
<script type="module">
import Vue from "./core/index.js";
let test = new Vue({
el: "test",
data: {
content: "hello",
description: "panda say hello",
list: [{a: "panda", b: "18"}, {a: "monkey", b: 20}],
obj: {
x: 1,
y: 2
},
imgSrc: "./a.png",
haha: "red"
},
methods: {
enter: function () {
console.log("enter");
}
},
created: function () {
console.log("hello");
}
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangyi999/frontend-mvvm.git
[email protected]:wangyi999/frontend-mvvm.git
wangyi999
frontend-mvvm
frontend-mvvm
master

搜索帮助