yq1 c0eb65a268 6月20配置打包 | 4 ヶ月 前 | |
---|---|---|
config | 4 ヶ月 前 | |
public | 4 ヶ月 前 | |
src | 4 ヶ月 前 | |
static | 4 ヶ月 前 | |
.env.development | 4 ヶ月 前 | |
.env.production | 4 ヶ月 前 | |
.gitignore | 4 ヶ月 前 | |
README.md | 4 ヶ月 前 | |
babel.config.js | 4 ヶ月 前 | |
package-lock.json | 4 ヶ月 前 | |
package.json | 4 ヶ月 前 | |
vue.config.js | 4 ヶ月 前 | |
yarn.lock | 4 ヶ月 前 |
vue后台管理系统模板 见文章: https://juejin.im/post/5e670edde51d4527110a9b40
http://cgq666.gitee.io/admin-vue
yarn install
yarn run serve
yarn run build
yarn run test
yarn run lint
import('@/vendor/Export2Excel').then(excel => {
const tHeader = [ // Excel表头
'姓名',
'电话'
]
const dataVal = [ // 对应的数据数组的字段名
'username',
'phone'
]
excel.export_json_to_excel2(tHeader, '这里是需要导入的数据', dataVal, '导出后的文件名称')
npm i -D vue-svg-loader vue-template-compiler
// vue.config.js
module.exports = {
chainWebpack: (config) => {
const svgRule = config.module.rule('svg');
svgRule.uses.clear();
svgRule
.use('babel-loader')
.loader('babel-loader')
.end()
.use('vue-svg-loader')
.loader('vue-svg-loader');
},
}
<script>
import daiban from '@/assets/icon/daiban.svg'
export default {
components:{
daiban
}
}
</script>
// 删除SVG文件中的 fill
.index-head-centent-right-list-icon-is{
color: #F515EA !important;
width: 20px;
height: 22px;
fill: currentColor; //重点
}