摘要:
1.下载包 npm install vue-awesome-swiper --save 2.main.js引包 import VueAwesomeSwiper from 'vue-awesome-swiper' Vue.use(VueAwesomeSwiper) import 'swiper/dis 阅读全文
2020年6月15日 #
摘要:
1,安装vue-video-player npm install vue-video-player --save 2,在main.js里面引入 import VideoPlayer from 'vue-video-player' require('vue-video-player/node_modu 阅读全文
2020年3月20日 #
摘要:
父组件props传值给子组件,页面渲染正常但控制台报错 Error in render: "TypeError: Cannot read property 'url' of undefined" 问题:可能是由于页面打开时请求数据还未赋值,但页面已渲染,请求数据回来后数据法伤改变页面重新渲染一次 方 阅读全文
2020年1月8日 #
摘要:
vuejs使用vue-js-modal弹窗 演示地址:http://vue-js-modal.yev.io/ 1.安装 npm i -D vue-js-modal 弹窗组件地址自定义关闭按钮在main.js中添加属性 Vue.use(VModal, { dynamic: true, injectMo 阅读全文
2020年1月7日 #
摘要:
video标签两边不能铺满盒子;如图: 如果不考虑兼容IE浏览器可以使用CSS样式: video{ object-fit:fill;} 以上CSS不兼容IE 需要兼容IE建议去这里看看详细插件的使用 阅读全文
2019年12月20日 #
摘要:
只要在style中添加样式即可 .el-table--enable-row-hover /deep/ .el-table__body .current-row > td { background-color: #3385ff; } 阅读全文
摘要:
按照官网多次调用会出现这种问题 修改之后 data() { return { notifyPromise: Promise.resolve() } }, methods: { notify(msg) { this.notifyPromise = this.notifyPromise.then(thi 阅读全文