vue.js 使用v-model v-once

Posted tommymarc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js 使用v-model v-once相关的知识,希望对你有一定的参考价值。

v-model 双向绑定

v-once 单项绑定

代码:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>vue.js 使用v-model v-once</title>
    <script src="vue.js"></script>
</head>
<style>
</style>
<body>
<div id="ask"><!--vue不能控制body和html的标签-->
    <h1>title</h1>
    <input type="text" v-model="title"><!--双向绑定-->
    <h3 v-once>title</h3><!--只绑定一次-->
</div>
<script>
    var app = new Vue( //实例化vue
        el:#ask,//vue控制id为ask的元素,
        data:
            title:ask.mykeji.net,
        
    );
</script>

</body>
</html>

 

以上是关于vue.js 使用v-model v-once的主要内容,如果未能解决你的问题,请参考以下文章

使用 Vue.js 将方法结果绑定到 v-model

Vue.js v-model 数据对象

Vue.js 范围滑块,设置 v-model 并获取更改

如何在 Vue.js 中使用带有嵌套属性的 v-model

Vue.js 文本输入不显示 v-model 的值

html 笔记:Vue.js的v-model和简单的自定义输入封装:1。 Vue.js官方教程中的v-model