这里使用了momentjs插件用来格式化时间。
html
<p>{{time}}</p>
js
setInterval(function () {
that.time = moment().format("YY...
yekong
4年前 (2021-04-08)
喜欢
name自定义文件名
headers自定义headers
<el-upload
action=""
list-type="picture-card"
...
yekong
4年前 (2021-04-08)
喜欢
html
<div class="table-main" id="table" :class="{fixed:fixed}"></div>
js
document.addEventListen...
yekong
4年前 (2021-04-08)
喜欢
引入高度地图
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=1.4.15&key=4287...
yekong
4年前 (2021-04-07)
喜欢
在路由中的meta.requiresAuth添加参数来判断是否需要登录才可以访问
const routes = [
{
path: '/Login',
name: 'Login',
component: () =>...
yekong
4年前 (2021-04-05)
喜欢
在axios拦截器里进行配置
if (router.history.current.fullPath) {
router.push({path: '/reg/login', query: {url:router.history.cu...
yekong
4年前 (2021-04-02)
喜欢
安装依赖
npm i JSONbig --save
在axios.create添加
const service = axios.create({
baseURL: devIp + '', // 测试IP
timeout: 100000, // r...
yekong
4年前 (2021-03-16)
喜欢
两种方式来解决:
后端处理,将这个较长的数值类型,改完字符串类型
前端引入第三方包jsonbig来处理这个长数值精度丢失问题
import JSONBIG from 'json-bigint'
// 默认配置 转换响应数据
axios.defaults.tr...
yekong
4年前 (2021-03-16)
喜欢
安装脚手架
npm i -g @vue/cli
创建项目
vue create vue3project
手动配置选择
Manually select features
通过空格选择自己需要的配置
创建vue3项目就选择3.x
创建并运行后的效果
...
yekong
4年前 (2021-03-09)
喜欢
<el-dialog title="代码详情" :visible.sync="showCodeDialog">
<codemirror v-model="code" :options...
yekong
4年前 (2021-02-07)
喜欢