1 Star 1 Fork 0

肖艳斌/vue_code

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
8_3.html 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
yanbin xiao 提交于 2024-03-21 20:44 . 修改文案
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app"></div>
<div style="font-size: 14px; position:absolute;bottom:20px; left:10px;">
源代码地址:https://gitee.com/xiao_yan_bin/vue_code<br/>
github: https://github.com/xiaoyanbin/vue_code<br/>
vue设计与实现,持续更新,建议点赞收藏,有问题可以在评论区留言
</div>
<script>
const renderer = createRenderer({
createElement(type){
return document.createElement(type)
},
insert(child,parent,anchor){
parent.insertBefore(child,anchor)
},
remove(child){
child.parent.removeChild(child)
},
setElementText(el,text){
el.textContent = text
},
patchProps(el,key,prevValue,nextValue){
if(shouldSetAsProp(key,prevValue,nextValue)){
const type = typeof el[key]
if(type === 'boolean' && nextValue ===''){
el[key] = true
}else{
el[key] = nextValue
}
}else{
el.setAttribute(key,nextValue)
}
}
})
// class
function patchProps(el,key,prevValue,nextValue) {
if(key === 'class'){
el.className = nextValue || ''
}else{
el.setAttribute(key,nextValue)
}
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/xiao_yan_bin/vue_code.git
git@gitee.com:xiao_yan_bin/vue_code.git
xiao_yan_bin
vue_code
vue_code
master

搜索帮助