VUE 简易版双向绑定渲染界面

Posted 嘴巴嘟嘟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE 简易版双向绑定渲染界面相关的知识,希望对你有一定的参考价值。

<!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>
</head>

<body>
    <input type="text" v-model="content">
    <p v-bind="content"></p>
    <input type="text" v-model="title">
    <input type="text" v-model="title">
    <p v-bind="title"></p>
    <script>
        function View () 
            let proxy = new Proxy(, 
                get (obj, property)  ,
                set (obj, property, value) 
                    document.querySelectorAll(`[v-model="$property"]`).forEach(item => 
                        item.value = value
                    )
                    document.querySelectorAll(`[v-bind="$property"]`).forEach(item => 
                        item.innerHTML = value
                    )
                ,
            )
            this.init = function () 
                const els = document.querySelectorAll("[v-model]")
                els.forEach(item => 
                    item.addEventListener('keyup', function () 
                        proxy[this.getAttribute('v-model')] = this.value
                    )
                )
            
        
        let v = new View()
        v.init()
    </script>
</body>

</html>

以上是关于VUE 简易版双向绑定渲染界面的主要内容,如果未能解决你的问题,请参考以下文章

vue双向绑定 简易实现

vue双向数据绑定简易demo

Vue后台管理界面

vue checkbox 双向绑定及初始化渲染

Vue.js入门教程(三)双向绑定和数据渲染

vue双向绑定原理源码解析