- 博客(9)
- 资源 (1)
- 收藏
- 关注
原创 vue 安卓4.4 打不开的坑
首先 npm install babel-polyfill 然后在webpack.base.conf.js中修改入口 entry: { app: [‘babel-polyfill’, ‘./src/main.js’]//最新的入口 // app: ‘./src/main.js’//原来的入口 }, 重新npm run dev 就可以啦!!!,安卓4.4重新打开,主要
2017-11-24 10:16:04 5619
原创 vue.extend
一般有两种写法import toast from ‘./toast.vue’ const ToastConstructor = Vue.extend(toast)let MessageBox = Vue.extend(require(‘./message.vue’)); q第二种引入方式会存在一些问题,在vue中最好用第一种方式引入
2017-11-08 10:44:49 556
原创 安卓隐藏全屏按钮css
video::-webkit-media-controls-fullscreen-button{ width: 0!important; height: 0!important; } video::-webkit-media-controls-fullscreen-button{ -webkit-appearance:none!important; wid
2017-08-25 16:29:32 553
原创 element-ui,后台status状态为1,2,3,转化为中文
文档并没有详细说明,记录一下<el-table-column prop="status" width="100" align="center" label="状态" > <template scope="scope"> {{ scope.row.status === 1 ? '
2017-08-09 17:02:31 5689 3
原创 vue element-ui 绑定@keyup事件无效
解决办法: <el-input v-model="searchParmas.gameName" placeholder="游戏名称" class="w120" @keyup.native="getGameList(searchParmas.gameName)"></el-input> 加上.native覆盖原有封装的keyup事件即可
2017-08-04 12:30:10 34697 3
原创 vue 本地环境跨域请求proxyTable
主要在config->index.js中配置 proxyTable: { ‘/gameapi’: { changeOrigin: true, // target: ‘http://rap.iduoku.cn/mockjs/20‘, mock地址 target: ‘http://192.168.1.124
2017-08-03 10:04:33 7639
原创 git 的使用
从gitlab上拉取代码首先git clone gitlab地址进入clone下来的文件夹,新建对应的本地分支git pull 最新分支上代码,注意本地分支与远程分支名字需对应完成后git push 到对应的远程分支
2017-07-31 11:21:04 184
原创 vue v-for v-if
vue v-for v-if同时使用时候<ul v-show="showGN" @click="showGN = !showGN"> <li v-if="item.packable == 1" v-for="item in gameNameList" @click="changeGn(item.name, item.id)">{{
2017-07-20 10:32:22 719
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人