1 Star 0 Fork 0

柠檬/Vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
hook.html 1.93 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>v-once v-model v-html v-bind 和生命周期</title>
</head>
<body>
<div id="app">
<p>{{time}}</p>
<p v-once>{{age}}</p>
<input type="text" v-model="age">
<p >{{!isOk?1:2}}</p>
<h2 v-html="tagInfo"></h2>
<img v-bind:src="pic" alt="">
<a v-bind:href="page">xxxx</a>
<p style="color: red;">实现功能:修过输入框,图片随着变化</p>
<input type="text" v-model="picsrc">
<p><img v-bind:src="picName+picsrc+picForamt" alt=""></p>
</div>
<script src="./js/vue.js"></script>
<script>
let vm=new Vue({
el:"#app",
data:{
time:new Date(),
msg:'Connot read property of undefined',
age:18,
tagInfo:'<p style=color:red>我是标签文本</p>',
isOk:true,
pic:'./img/patient_pic.jpg',
picName:'./img/pic',
picForamt:'.jpg',
picsrc:1,
page:'xxxx.html',
},
beforeCreate() {
},
created() {
},
beforeMount() {
},
mounted() {
if(true){
this.page='xxx'
}else{
this.page='xxx'
}
},
beforeUpdate() {
this.time=new Date();
this.picsrc<4?this.picsrc++:this.picsrc=1
// this.picsrc=''
},
updated() {
},
beforeDestroy() {
},
destroyed() {
},
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yan_jun_feng/Vue.git
git@gitee.com:yan_jun_feng/Vue.git
yan_jun_feng
Vue
Vue
master

搜索帮助