(二)computed计算选项

2018-02-15  本文已影响0人  我拥抱着我的未来

本节知识点

概述

(一) 格式化输出

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0">
    <title>Title</title>
    <script src="js/vue.js"></script>
</head>
<body>
  <div id="app">
    <hello :info="message2"></hello>
  </div>
</body>
<script>
    Vue.component("hello",{
        template:"<p style='color:red'>{{info}}</p>",
        props:['info']
    })
    var app = new Vue({
        el:"#app",
        data:{
            message:"100"
        },
        computed:{
            message2:function(){
                return "$"+this.message
            }
        }
    })
</script>
</html>
上一篇 下一篇

猜你喜欢

热点阅读