
Vue
小小菜_v
时间会证明一切
展开
-
npm install 报错 EXIST: file already exists
npm install 报如下错误Error: EEXIST: file already exists,mkdir 'C:\Users\caicai\AppData\Roaming\npm'解决方案:进入C:\Users\caicai目录下搜索npmrc隐藏文件,找到删除即可重新执行npm install原创 2021-06-22 15:12:04 · 1828 阅读 · 1 评论 -
Vue 识别文本\n换行
Vue 识别文本中\n换行问题# white-space: pre-wrap 表示识别\n换行# line-height:22px 调整行间距<h4 style="white-space: pre-wrap; line-height:22px">{{activity.comments}}</h4>原创 2021-06-07 15:37:04 · 818 阅读 · 0 评论 -
vue中expand-change使用
vue - table 展开行展示与table表不关联的数据template:<template> <el-table :data="tableData" row-key="id" :expand-row-keys="expandKeys" @expand-change="expandChange" style="width: 100%"> <el-table-column type="expand">原创 2021-05-25 17:54:22 · 8159 阅读 · 0 评论 -
vue 超链接跳转
Vue 超链接跳转<template slot-scope="scope"> <div class="scope-div" :title="scope.row.gb_url"> <el-link :href="scope.row.gb_url" style="margin-right:10px;" target="_blank"> {{scope.row.gb_url}} </el-link>原创 2021-05-25 11:05:15 · 4025 阅读 · 0 评论 -
vue 筛选功能---filters
Vue 前端做筛选功能—filterstemplate:<el-table-column v-if="columnsStatus[10].checked" :sortable="columnsStatus[10].sortable" :prop="columnsStatus[10].column" :label="columnsStatus[10].label" :width="columnsStatus[10].width" show-overflow-tooltip :filte原创 2021-05-25 10:48:28 · 2117 阅读 · 0 评论 -
vue三元式进行样式绑定
Vue 三元式进行样式绑定<template slot-scope="scope"> <el-tag :type="(scope.row.audit == 'pass' ? '' : (scope.row.audit == 'auudit' ? 'success' : (scope.row.audit == 'reject' ? 'danger' : 'warning')))" disabled-transitions> {{scope.row.audit}} &l原创 2021-05-24 17:12:18 · 412 阅读 · 0 评论