摘要:效果图在线演示地址开发语法系统设备
demo效果图
在线演示地址 http://wangduanduan.coding.me...
html
{{item.name}}{{one}}
js
new Vue({ el:"#app", data:{ selectedItems: [{ name: "NodeJs" }], isShowDropmenu: false, inputItem:"", cataName:[{name:"开发语法"}, {name: "系统设备"}], cataList:[{ isShow: true, items:["js","c++","java"] },{ isShow: false, items:["windows","chrome","linux"] }] }, methods:{ showDropmenu: function(event){ console.log("showDropmenu"); this.isShowDropmenu = true; }, hideDropmenu: function(event){ this.isShowDropmenu = false; console.log("hideDropmenu"); }, test: function(){ console.log("test"); }, addItem: function(){ this.selectedItems.push({name: this.inputItem}); this.inputItem = ""; }, deleteSelectedItem: function(index){ this.selectedItems.splice(index, 1); }, showCataList: function(index){ var i = this.cataList.length; while(i--){ i === index ? this.cataList[i].isShow = true: this.cataList[i].isShow = false; } }, addByClick: function(name){ var i = this.selectedItems.length; while(i--){ if(this.selectedItems[i].name === name){ return; } } this.selectedItems.push({name: name}); } } });
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/81292.html
摘要:最近上看见了大漠的项目,看到说准备做一个首页,于是我的第一想法就是做一个列表页面,文件可以很容易的生成一个文件。对于不确定的情况下,我们不表明具体的协议,使用。 最近上Github看见了大漠的DemoHouse项目,看到Issues说准备做一个首页,于是我的第一想法就是做一个md列表页面,md文件可以很容易的生成一个html文件。刚刚做好脚本文件,可以生成list.md。随后提了pr。...
摘要:组件是中很重要,这部分也是最难理解的,先聊一聊中的组件。语法组件名选项对象来定义一个下拉框组件请选择北京上海杭州组件的名字就为,在模板中使用组件请选择北京上海杭州在模板中使用组件和正常标签一样。 看了Vue的文档,写得很简洁,但是并不简单。在自己学习的过程中踩过不少的坑,学习的时候把官网的例子从头到尾做了一遍,记录在github中https://github.com/WYseven/v...
摘要:子组件通过就可以接受到这个父组件传递的值。点击向父组件传值在父组件中的标签中监听该自定义事件,并添加一个响应该事件的方法。 1.环境搭建 下载 vue-cli:npm install -g vue-cli 初始化项目:vue init webpack vue-demo 进入vue-demo文件夹:cd vue-demo 下载安装依赖:npm install 运行该项目:npm...
摘要:子组件通过就可以接受到这个父组件传递的值。点击向父组件传值在父组件中的标签中监听该自定义事件,并添加一个响应该事件的方法。 1.环境搭建 下载 vue-cli:npm install -g vue-cli 初始化项目:vue init webpack vue-demo 进入vue-demo文件夹:cd vue-demo 下载安装依赖:npm install 运行该项目:npm...
阅读 2539·2021-10-11 10:58
阅读 1124·2021-09-29 09:34
阅读 1425·2021-09-26 09:46
阅读 3806·2021-09-22 15:31
阅读 701·2019-08-30 15:54
阅读 1442·2019-08-30 13:20
阅读 1238·2019-08-30 13:13
阅读 1468·2019-08-26 13:52