computed

Posted goff-mi

tags:

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

computed 计算属性(派生值,附加值)

基于原来的属性,对数据进行处理,不改变原数据

    let myInput = {
        template:`  <div>
                        <input v-model="msg">
                        <br>
                        <span>{{changeMsg}}</span>
                    </div>`,
        data() {
            return {
                msg:‘hello‘
            }
        },
        computed:{
            changeMsg() {
                return this.msg.split(‘‘).join()
            }
        }
    }
    new Vue({
        el: "#app",
        components:{
            myInput
        }
    })
 

 

以上是关于computed的主要内容,如果未能解决你的问题,请参考以下文章

活动(加载器 - 下载)+ 3 个片段(使用加载器 - 计算)

C# 8 开关表达式

OpenStack 之 Nova Compute 的代码结构图

错误:(gcloud.compute.ssh)[/usr/bin/ssh] 退出并返回代码 [255]

试编写java代码实现一个计数器类(Computer),其中包括:变量value初始值为0

EF 4.1,代码优先:不属于“timestamp”或“rowversion”类型的属性不支持存储生成的模式“Computed”