摘要:
基于大华插件:H5播放器开发套件(wsplayer无插件开发包) V1.2.9 使用方法 npm i wspt wspt使用说明 1. 找到node_modules目录中wspt文件夹,将static文件夹、jquery.min.js、palyer.css、PlayerControl.js、WSPl 阅读全文
摘要:
npm ERR! code EPERMnpm ERR! syscall renamenpm ERR! path D:\program files\nodejs\node_global\node_modules\cnpm\node_modules\npm\node_modules.node-gyp.D 阅读全文
摘要:
/** * 10000 => "10,000" * @param {number} num */export function toThousandFilter(num) { return (+num || 0).toString().replace(/^-?\d+/g, m => m.replac 阅读全文
摘要:
"vue": "2.6.12",@vue/cli 4.5.13npm install postcss-px2rem module.exports = { css: { loaderOptions: { css: {}, postcss: { plugins: [ require('postcss-p 阅读全文
摘要:
在main.js中添加 if (['production', 'staging'].includes(process.env.NODE_ENV)) { window.console.log = () => {} } 阅读全文
摘要:
<section class='app-main'> <transition mode='out-in' name='fade-transform'> //错误示范,会有问题 <!-- <keep-alive :include='$store.state.KeepAliveIncludeArr'>- 阅读全文
摘要:
问题:表单编辑以后回显select 下拉框 ,点击option没反应。原因:如果option是循环赋值来的,数据层次太多,render函数没有自动更新,需手动强制刷新。解决方法:加 @change="$forceUpdate()" 方法就ok ,如下: <el-select @change="$fo 阅读全文
摘要:
vue里面给style标签添加scoped属性之后,css只会作用于当前组件中的元素。 但是这次项目里面出现了父组件的样式影响了子组件的样式。父组件<style scoped> .test{color: #f00;} </style>子组件<template> <div class="test"> 阅读全文
摘要:
<template> <div class='dashboard-container'> <el-cascader ref='cascader' v-model='cascaderValue' v-loading='loading' :disabled='disabled' :props='prop 阅读全文
摘要:
<el-form ref='tableForm' :model='ruleForm' :rules='rules' class='demo-ruleForm'> <el-table :data='ruleForm.list' class='eltableSty' style='width: 100% 阅读全文