1 Star 0 Fork 0

Jesse/vue_learning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ex02.html 1018 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jesse 提交于 2021-07-13 15:54 +08:00 . init
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="vue.js" type="text/javascript"></script>
</head>
<body>
<div id="app-5">
<p> {{message}} </p>
<button v-on:click="reverseMessage">reverseMessage</button>
</div>
<div id="app-6">
<p>{{message}} </p>
<input v-model="message"/>
</div>
<script>
var app5 = new Vue({
el: '#app-5',
data: {
message: 'hello vue!'
},
methods:{
reverseMessage:function(){
this.message = this.message.split('').reverse().join('')
}
}
});
var app6 = new Vue({
el: '#app-6',
data: {
message: 'hello vue'
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/forinks/vue_learning.git
git@gitee.com:forinks/vue_learning.git
forinks
vue_learning
vue_learning
master

搜索帮助