07 2018 档案
摘要:生命周期图示 创建前,创建后,挂载前,挂载后,更新前,更新后,销毁前,销毁后 beforeCreate:function(){ console.log('1 beforeCreate 组件还未被创建'); }, created:function(){ console.log('2 created 组
阅读全文
摘要:Vue点击切换多个class {{item.text}} import Vue from 'vue' export default{ data:function() { return { items:[ {text: '静安区'}, {text: '宝山区'}, {text: '虹口区'}, {te
阅读全文
摘要:这是我同事写的方法,比官网的简单 调用方法 that.weixin_share({ postUrl: '',//微信分享的php shareData: { title: ,//分享标题 desc: ,//分享描述 imgUrl: ,//分享图标 link: //分享链接 } }); 分装的方法 fu
阅读全文
摘要:1、select默认选中项颜色为灰色,选择后变为黑色 <!DOCTYPE html select 元素 .box { width: 100%; height: 100%; text align: center; margin top: 100px; } / select 的默认下拉箭头 / / ie
阅读全文
摘要:1.安装vue cli,通过vue v可以查明 安装vue cli步骤 vue init airyland/vux2 projectPath(项目名字) 2.安装依赖模块 方法1:npm install 方法2:npm install registry=https://registry.npm.ta
阅读全文