vue实现简易留言板

Posted

tags:

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

首先引入vue.js

<script src="vue.js"></script>

布局

<div id="div">
    <input type="text" v-model="username" @keyup.enter="add()">
    <input type="button" value="按钮" @click="add()">
    <div v-show="this.arr.length ==0">暂无留言</div>
    <ul>
        <li v-for="item in arr">{{item}}
            <a href="javascript:;" @click="remove($index)">删除</a>
        </li>
    </ul>
</div>

js

 <script>
        window.onload = function () {
            new Vue({
                el: ‘#div‘,
                data: {
                    username: ‘‘,
                    arr: []
                },
                methods: {
                    add: function () {
                        this.arr.unshift(this.username);
                        this.username = ‘‘;
                    },
                    remove:function (index) {
                        this.arr.splice(index,1);
                    }
                }
            });
        }
    </script>

 

以上是关于vue实现简易留言板的主要内容,如果未能解决你的问题,请参考以下文章

vue简易留言板

530 vue 一个基础语法的汇总范例 (简易留言板)

vue学习笔记第一天-vue.js简易留言板

element-ui + vue 简易留言板

用javascript实现简易留言板

微信小程序实现简易留言板