Vue
小林——先生
这个作者很懒,什么都没留下…
展开
-
git pull You do not have permission to pull the repository 错误
换了一个环境重新拉取项目的时候 发生了错误git pullYou do not have permission to pull the repository 错误之后通过查找归类后,发现只要在 .git 文件下的config 文件中 在url请求地址添加用户名 密码[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignor原创 2020-07-08 10:05:39 · 1565 阅读 · 1 评论 -
使div 始终处于底部
<button type="primary" class="button" @tap="send" :disabled="validation">确定</button>css.button{ width: 100%; height:100px; /* footer的高度一定要是固定值*/ position:absolute; bottom:0px; left:0px;}原创 2020-07-07 11:36:49 · 879 阅读 · 0 评论 -
vue 开启遮罩层,禁止下方页面滚动
<template><view @touchmove.native.stop.prevent="clear" ></view></template>methods: { clear(e) { // TODO nvue 取消冒泡 e.stopPropagation()},}原创 2020-07-07 10:44:17 · 1041 阅读 · 0 评论 -
解决vue-cli 中eslintrc与格式化语法工具冲突警告问题
解决vue-cli 中eslintrc与格式化语法工具冲突警告问题1.在根目录下创建.prettierrc文件2.输入 (下列代码){ "semi" : false, "singleQuote": true}二. 补充 无语法错误报错问题复制可视化面板中对应的错误的语法规则2.找到.eslintrc.js文件3.找到 rules 字段4.将刚刚复...原创 2020-01-15 11:20:19 · 805 阅读 · 1 评论 -
Vue git推送分支到仓库
标题新建一个本地分支git checkout -b login //创建分支 --login 分支名git branch //查看分支git checkout login //切换分支 --login 分支名将本地的分支推送到远程仓库git push第一次推送时,需要输入 git push -u origin login // --login 分支名推送成功...原创 2019-12-23 20:43:53 · 401 阅读 · 0 评论 -
webpack 引入非js文件样式
**webpack 引入非js文件样式**创建一个css文件其中输入测试样式在main.js中引入保存后会终端中会报错,因为缺少loaderctrl+c 退出终端输入 cnpm i style-loader css-loader -D 安装样式表有报错在运行一遍在webpack.config.js中继续配置loader模块 module:{ rul...原创 2019-12-13 10:39:08 · 301 阅读 · 0 评论 -
Vue webpack 基本配置
webpack 基本配置1.创建文件夹2.打开终端到文件路径3.输入 npm init -y创建包管理工具同时文件会生成这样一个文件4.创建src 和 dist 文件夹src下创建一个index.html文件和一个main.js 文件5.在终端输入 webpack .\src\main.js .\dist\bundle.js 如果是webpack是4.0以上版本输入...原创 2019-12-12 17:39:11 · 466 阅读 · 0 评论 -
vscode安装 jquery
使用 vscode 装 jquery1.在终端中配置到对应的文件路径2.输入 npm init - y弹出这个页面进行下一步3.输入npm i jquery -S 回车 弹出下面内容即可原创 2019-12-11 17:08:33 · 17315 阅读 · 0 评论 -
Avoid mutating a prop directly since the value will be overwritten whenever the parent component报错
[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop’s value. Prop being ...原创 2019-12-10 17:06:14 · 172 阅读 · 0 评论 -
component 使用问题
Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.使用Vue.component 组件的 template 属性指向的模板内容,必须且只能有唯一的一个根元素将根元素...原创 2019-12-10 14:53:27 · 300 阅读 · 0 评论