<div class="layout-right-top">
    <h3>输入数据维度:{{message}}</h3>
    <h3 style="margin-top: 20px;">输出数据维度:23</h3></div>#其中data中有数据
data:function (){
    return{
        message:'hello'
    }}但是这样子渲染不出来message,是空的?
但是如果改成input框,使用v-model绑定又可以渲染出来?什么原因?
<div class="layout-right-top">
    <input v-model="message">输入数据维度:{{message}}</input>
    <h3 style="margin-top: 20px;">输出数据维度:23</h3></div>动漫人物
相关分类