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

Posted xfym888

tags:

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>简易留言板</title>
 <script  src="vue.js"></script>
<style type="text/css">
  .act{color:red;
       background-color:yellow;}
  #zuj div{
    display:none;
    width:130px;
    height:100px;
    background-color:#5E5353;
    color:#EAE8E8;
  }
 #zuj  div.show{
    display:block;
  }
  .fz{font-size:36px;}
</style>
</head>
<body>
<div id="zuj" >
   请输入你的用户名:<input type="text" v-model=‘usernm‘ ><br>
   请输入留言:<textarea v-model=‘msg‘></textarea>
   <button @click="tj">提交</button>
 留言列表
<UL>
   <li v-for="(itm,idx) in arr">
     <p>{{itm.ur}}说:</p><p>{{itm.mg}}<button @click=‘delit(idx)‘>删除</button></p></li>
</UL>
</div>
</body>
<script  type =‘text/javascript‘>
   var vm = new Vue({
      el:‘#zuj‘,
      data:{
        usernm:null,
        msg:null,
        arr:[],
      },
      methods:{
        tj(){
           var tjobj={
            ur:this.usernm,
            mg:this.msg,
            }
            this.arr.push(tjobj);
        },
        delit(index){
          this.arr.splice(index,1)
        },
      }
   })
</script>
</html>

以上是关于530 vue 一个基础语法的汇总范例 (简易留言板)的主要内容,如果未能解决你的问题,请参考以下文章

阿里前端常考vue面试题汇总

ftp vsftpd 530 login incorrect 解决办法汇总

vue+node 实现的一套简易博客系统

UG二次开发与数据库应用基础与典型范例的目录

Vue基础汇总

Vue初体验——用Vue实现简易版TodoList