logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Vue 项目中去掉路由中#的问题

1.问题:使用Vue-router进行路由导航,但是在浏览器中地址栏url中总包含#的问题解决方法:更改src目录下的index.js文件,添加mode:‘history’方法解决’#'问题。2.添加mode:'history’方法后,如果把项目打包dist文件运行时,页面会出现404。网上查询解决办法是nginx。但是还没有尝试。...

Vue中如何把css单独成模块导入

使用方法很简单:单独建立一个css文件,然后在当前页面通过@import导入<style>@import " ../css/style.css"@import "../css/config.css"</style>

vue echarts 折线图 折线阴影

<style>@import "../../css/style.css";</style><style scoped>@import "../../css/vue_single_line.css";</style><template><div class="single_line">...

#echarts
Vue引入百度地图

1.安装地图npm install vue-baidu-map --save2.在build文件夹中webpack.base.conf.js引入module.exports = {context: path.resolve(__dirname, '../'),entry: {app: './src/main.js'},externals: {'B...

Vue 访问第三方API跨域问题

Vue访问第三方API时会出现跨域问题,解决方法是在项目目录中congfig文件夹下index.js文件中proxyTable配置代理。例如:module.exports = {dev: {// PathsassetsSubDirectory: 'static',assetsPublicPath: '/',//此处配置代理proxyTa...

Vue如何读取图片

1.第一种是使用Require读取图片<template><div><div class="contetB"><div v-for="person in personList"><img :src="person.img">&...

Vue 使用 vue-echart

1.安装echartnpm install vue-echart2.man.js中导入echartimport Vue from 'vue'import App from './App'import router from '../src/router/router'// 导入vue-echarts插件import ECharts from 'vue-echarts/compon...

Vue打包后出错:Tip: built files are meant to be served over an HTTP server. Opening index.html over file

1、使用命令npm run build打包vue项目之后提示 :Tip: built files are meant to be served over an HTTP server.Opening index.html over file我的项目使用的是Cordova命令建立IOS项目,把npm run build的dist文件放到www文件,运行项目,打开app时index.html是...

#html
android 仿微信图片选择

1.添加支持包implementation 'com.github.lovetuzitong:MultiImageSelector:1.2'2.在AndroidManifest.xml添加权限<uses-permission android:name="android.permission.CAMERA"/><uses-permission android:...

到底了