vue
BIRDGETS
这个作者很懒,什么都没留下…
展开
-
vue项目设置代理
原创 2020-09-02 08:57:48 · 363 阅读 · 0 评论 -
vuex存值取值
vuex中的存值和取值存值this.store.dispatch('action方法名',值)存值this.store.dispatch('mutations方法名',值)store文件夹下的index.js页面代码import Vue from 'vue'import Vuex from 'vuex'import createLogger from 'vuex/dist/logger'import Beike from './beike'Vue.use(Vuex)const st原创 2020-08-22 11:16:48 · 7924 阅读 · 1 评论 -
vue中computed和watch理解
computed 计算属性data(){return { aa:1}},computed:{newData:function(){ return this.aa },},watch:{ aa:function (newV,oldV) { console.log(333) } },computed用于处理复杂的逻辑运算(不支持异步,有缓存),主要和methods存储方法来进行区分, watc.原创 2020-08-19 19:37:57 · 248 阅读 · 0 评论 -
vscode配置保存时就效验eslint
首先需要在组件里面按照eslint组件然后在setting.json里面这样配置就可实现保存时自动效验{"workbench.colorTheme": "Default Light+","fileheader.tpl": "/* * @Author: {sunzhiting} * @Date: {createTime} * @Last Modified by: {lastModif...原创 2019-10-30 16:14:02 · 1368 阅读 · 0 评论 -
vue项目打开新窗口并传参
let newpage = this.$router.resolve({name: '项目预览',path: '/casedetail/preview',query: {id: id,// formalRev: this.formalRev,releaseStatus: this.releaseStatus,path: this.modulePath}})...原创 2019-09-24 19:14:36 · 1260 阅读 · 0 评论 -
vue首次部署需要改的配置
解决图片不显示问题原创 2019-08-26 18:34:36 · 373 阅读 · 0 评论 -
vue-cli搭建的项目,引入element-ui
脚手架搭建项目在node环境下使用脚手架3创建项目npm i -g @vue/cli安装脚手架npm i -g @vue/cli-init创建一个项目vue init webpack '项目名字'i在main.js中import ElementUI from 'element-ui'import 'element-ui/lib/theme-chalk/index.css...原创 2019-08-12 19:36:09 · 278 阅读 · 1 评论 -
vue中引入外部js,css
export default { mounted() { const s = document.createElement('script'); s.type = 'text/javascript' s.src = 'https://webfile.aicfe.cn/gx/assets/js/libs.min.js'; document.body.append...原创 2019-07-30 11:07:40 · 210 阅读 · 0 评论