Loading

上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.9/vue.js"></script> <script> // 插件代码 const myPlugin = { install(Vue) { Vue.mixin({ created() { 阅读全文
posted @ 2022-05-02 21:11 资深if-else侠 阅读(72) 评论(0) 推荐(0) 编辑
摘要: class Dep { constructor() { // 订阅任务队列,方式有相同的任务,用Set数据结构简单处理 this.subscribers = new Set() } // 收集依赖 depend () { if (activeUpdate) { this.subscribers.ad 阅读全文
posted @ 2022-05-02 15:32 资深if-else侠 阅读(79) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="container-box"> <div class="enterpriseChoice"> <div class="search-div"> <div class="return"> <i></i> <p @click="$router.back()" 阅读全文
posted @ 2022-04-30 17:50 资深if-else侠 阅读(1976) 评论(0) 推荐(0) 编辑
摘要: <style lang="scss" scoped> @import "~@/styles/variables.scss"; .fixed-header { background-color: $documentBg; width: calc(100% - #{$sideBarWidth}); } 阅读全文
posted @ 2022-04-29 19:12 资深if-else侠 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 1、concat() a=[]; a.concat([1,2,3,4]); 此时a还是为[],返回的结果为合并后的值。因为concat()方法不会改变原来的数组,只会返回合并后新的数组,所以如果a想要得到合并的值,就必须将返回的值赋值给a: a = a.concat([1,2,3,4]); 2.、f 阅读全文
posted @ 2022-04-18 14:24 资深if-else侠 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 效果图 import * as echarts from 'echarts' export default function buildOption (arr) { let color = ['#ffd546', '#18c6ce', '#1c9bf6', '#fb6666'] // var col 阅读全文
posted @ 2022-04-08 10:52 资深if-else侠 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 安装postcss-px-to-viewport npm install postcss-px-to-viewport 根目录新建postcss.config.js文件 //postcss.config.js文件 module.exports = { plugins: { 'postcss-px-t 阅读全文
posted @ 2022-04-07 16:09 资深if-else侠 阅读(701) 评论(0) 推荐(1) 编辑
摘要: 1.安装 在控制台输入npm install vue-count-to来安装vue-count-to插件 导入插件并声明 在需要使用的页面导入插件,并声明使用 3.使用插件: 第一种方法: <template> <countTo :startVal='startVal' :endVal='endVa 阅读全文
posted @ 2022-04-06 09:10 资深if-else侠 阅读(239) 评论(0) 推荐(0) 编辑
摘要: .border { margin: 300px auto; width: 200px; height: 100px; background: linear-gradient(blue, blue) left top, linear-gradient(blue, blue) left top, lin 阅读全文
posted @ 2022-04-01 14:31 资深if-else侠 阅读(221) 评论(0) 推荐(0) 编辑
摘要: .tablecontainer { //滚动条的滑块 &::-webkit-scrollbar { /*滚动条整体样式*/ width: 6px; /*高宽分别对应横竖滚动条的尺寸*/ height: 6px; background-color: transparent; } &::-webkit- 阅读全文
posted @ 2022-04-01 09:31 资深if-else侠 阅读(58) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页