这篇文章给大家分享的是有关vue和bootstrap的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
顺庆ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:18980820575(备注:SSL证书合作)期待与您的合作!vue和angular非常像都是MVVM。道理都是想通的,就是语法的差异
我觉得vue和angular区别:
1.vue更轻,更便捷,适用于移动开发
2.vue更简单。。
angular和vue指令的差别大致就是 ng-xxx和v-xxx。
vue是用过new Vue创建实例,然后在属性data绑定数据,在属性methods里添加方法。
vue的循环遍历是 v-for=“” ,事件是 v-on:clicl =“”;
直接上代码。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="bootstrap.css" rel="external nofollow" > <style> tr{ vertical-align: inherit; } </style> <script src="jquery.js"></script> <script src="bootstrap.js"></script> <script src="node_modules/vue/dist/vue.js"></script> <script> window.onload= function(){ var vm = new Vue({ el:'.container', data:{ myData:[], username:'', age:'' }, methods:{ add:function(){ this.myData.push({ name:this.username, age:this.age }); this.username=""; this.age=""; }, reset:function(){ this.username=""; this.age=""; }, del:function(index){ this.myData.splice(index,1) }, delAll:function(){ this.myData=[]; } } }) } </script> </head> <body> <div class="container"> <form role="form"> <div class="form-group"> <label for="username">用户名:</label> <input placeholder="输入用户名" type="text" v-model="username" id="username" class="form-control"> </div> <div class="form-group"> <label for="age">年龄:</label> <input placeholder="输入年龄" type="text" v-model="age" id="age" class="form-control"> </div> <div class="form-group"> <input type="button" class="btn btn-info" v-on:click="add()" value="添加"> <input type="button" class="btn btn-info" v-on:click="reset()" value="重置"> </div> </form> <hr> <table class="table table-bordered table-hover"> <caption>用户信息表</caption> <tr class="text-danger"> <td class="text-center">序号</td> <td class="text-center">名字</td> <td class="text-center">年龄</td> <td class="text-center">操作</td> </tr> <tr v-for="(item,index) in myData"> <td class="text-center">{{index+1}}</td> <td class="text-center">{{item.name}}</td> <td class="text-center">{{item.age}}</td> <td class="text-center"> <button class="btn btn-danger btn-sm" v-on:click="del(index)" data-toggle="dialog" data-target="#layer" >删除</button> </td> </tr> <tr v-show="myData.length!=0"> <td colspan="4" class="text-right"> <button v-on:click="delAll()" class="btn btn-danger btn-sm">删除全部</button> </td> </tr> <tr v-show="myData.length==0"> <td colspan="4" class="text-center"> <p>暂无数据</p> </td> </tr> </table> </div> </body> </html>
效果:
感谢各位的阅读!关于“vue和bootstrap的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
另外有需要云服务器可以了解下创新互联建站www.executivehouseboatcharters.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
分享标题:vue和bootstrap的示例分析-创新互联
网站URL:/article46/dopoeg.html
成都网站建设公司_创新互联,为您提供搜索引擎优化、虚拟主机、网站营销、面包屑导航、响应式网站、做网站
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联