如果process.env.NODE_ENV == 'development'就是开发模式
console.log((process.env.NODE_ENV)
process.env.NODE_ENV == 'development'
...
yekong
3年前 (2021-10-31)
喜欢
下载vue-video-player
npm install vue-video-player --save
在main.js文件引入
import VideoPlayer from 'vue-video-player'
require('video.j...
yekong
3年前 (2021-10-30)
喜欢
在for循环中使用了.reverse()导致编译后的页面访问卡死,去掉后就可以了。
<div class="paiming1item" v-for="(item,index) in list.reverse()" :key=&...
yekong
3年前 (2021-10-29)
喜欢
<template>
<div class="kaidengmoshiinfo">
<div class="kaidengmoshiinfohead">
<div class="kaidengmoshiin...
yekong
3年前 (2021-10-28)
喜欢
<el-progress stroke-width="10" :text-inside="true" :percentage="percentage"
:format=&...
yekong
3年前 (2021-10-26)
喜欢
<template>
<div class="mapinfo">
<div class="demo-input-suffix">
<span>经度:</span...
yekong
3年前 (2021-10-21)
喜欢
vue
<el-date-picker
v-model="value"
type="daterange"
@change="getdate"
...
yekong
3年前 (2021-10-20)
喜欢
export default {
name: 'top',
components: {},
props: {
id: {
type: String,
default () {
return '...
yekong
3年前 (2021-10-12)
喜欢
<style lang="scss" scoped>
.trees {
width: 100%;
::v-deep {
/* 设置树形最外层的背景颜色和字体颜色 */
.el-tree {
color: #f...
yekong
3年前 (2021-10-10)
喜欢
vue
<div class="itemx2">{{data.emptyTotalArea|getArea}}</div>
js
filters: {
getArea: function(area) {
...
yekong
3年前 (2021-10-05)
喜欢