1. 程式人生 > >01慕課網《vue.js2.5入門》——Vue中的組件

01慕課網《vue.js2.5入門》——Vue中的組件

inpu rip del 慕課網 his AC input roo 實例

TodoList功能開發

<body>
<div id="root">
    <div>
        <input v-model="inputValue"/>
        <button @click="handleSubmit">提交</button>
        <ul>
            <li v-for="(item,index) of list" :key="index">
                {{item}}
            </li>
</ul> </div> </div> <script> // vue實例 new Vue({ el: "#root", data: { inputValue: ‘‘, list: [] }, methods: { handleSubmit: function () { this.list.push(this.inputValue);
this.inputValue = ‘‘; } } }) </script> </body>

01慕課網《vue.js2.5入門》——Vue中的組件