在DOS窗口下在指定目录下执行vue ui
,然后在 http://localhost:8000
页面下进行相关的配置即可。
使用vue create 项目名称
命令创建项目
前端通过Ajax请求访问后端的Restful接口。因此需要安装axios插件。(axios封装了Ajax请求相关操作)
vue add axios
在图形界面下搜索ElementUI插件进行安装
$router.options.routes
就可以获取自定义的routes对象例如 this.$router.push() this.$router.replace()
this.$route.fullPath 或者如下 this.$route.path
// 例如在meta中定义一个表示true、false的字段 // 控制是否显示当前路由对应的组件 this.$route.meta this.$route.params this.$route.query
this.$router.replace({path: '/xxx'})
// 传参 this.$router.replace({path:'/xxx',query:{id:'111'}}) // 获取参数的值 this.$route.query.id
// 传参 // 配置路由的时候需要使用占位符声明接收params参数 path:'/serach/:keyword' // params参数可以传递,也可以不传递 path:'/serach/:keyword?'
//to属性的值有两种写法 写法1:字符串写法 <router-link :to="`/student?id=${id}&mess=${message}`">学生信息</router-link> 写法2:对象写法,其中name属性的值即为命名路由中的name配置项的值 <router-link :to="{ name: 'School', params:{ address:'杭州', id: 23 }, query: { mess: 'test' } }">学校信息</router-link>
// 传参 this.$router.push('/xxx?id='+row.id) // 获取参数的值 this.$route.query.id
this.$router.push('/search/' + this.keyword) // 对象写法,name属性属性的值需要在路由配置中配置好 this.$router.push({ name:'search', params:{keyword:this.keyword} })
// 存储 localStorage.setItem(string key,string value) // 读取 localStorage.getItem(string key); // 移除 localStorage.removeItem(string key)
给一个Vue组件绑定DOM原生事件时,需要加上native才能监听原生事件。例如:
<el-dropdown-item @click.native="logout">退出登录</el-dropdown-item>
调用如下方法将会重新载入当前文档
window.location.reload();
参考
<!--在index.vue中有如下定义:--> <el-form ref="loginForm"> <el-button :loading="loading" type="primary" style="width:100%;margin-bottom:30px;" @click.native.prevent="handleLogin">登录 </el-button> </el-form> //handleLogin方法定义如下: handleLogin() { this.$refs.loginForm.validate(valid => { if (valid) { this.loading = true this.$store.dispatch('user/login', this.loginForm).then(() => { this.$router.push({ path: this.redirect || '/' }) this.loading = false }).catch(() => { this.loading = false }) } else { console.log('error submit!!') return false } }) }
https://w
ww.iconfont.cn/
<keep-alive :include="cachedViews"> <!-- key属性保证不同的页面key不同--> <router-view :key="key" /> </keep-alive>
参考
参考
this.$store.state.xxx
来获取this.$router.matcher含有动态路由的相关信息
export function resetRouter() { const newRouter = createRouter() router.matcher = newRouter.matcher }
解决方案:降低node版本即可,新版本的node中自带npm
node_global
和node_cache
文件夹,node_global
文件夹下新建node_modules
文件夹npm config set prefix "node_global文件夹所在的路径" npm config set cache "node_cache文件夹所在的路径"
NODE_PATH
,其值为步骤1新建的node_modules
文件夹所在的路径;在path变量下新增值为步骤1新建的node_global
文件夹所在的路径和新增安装好的node.js所在的根目录。npm root -g
命令查看全局安装的位置Ant Design Vue,提供了大量的ui组件。案例:https://pro.antdv.com/
<!-- v-for循环生成div --> <div class="wrapper" v-for="(event, index) of eventsObj" > <div class="img-wrapper"> <img :src="event['img_urls'][0]" class="imgs" /> </div> </div>
eventsObj: [ { // 事件截图 img_urls: [ require("@/views/warning-event/test/test.png"), require("@/views/warning-event/test/city.jpg"), ], } ]
vue-i18n这个插件提供了多语言解决方案。
<style lang="scss"></style>
npm install sass-loader@版本号 --save-dev
参考