摘要: 水平滚动 demo.less #scroll_x { width: 300px; height: 30px; background-color: #ccc; color: green; position: relative; overflow: hidden; } #scroll_x_text { 阅读全文
posted @ 2024-01-11 11:12 卢老师不想编程 阅读(76) 评论(0) 推荐(0) 编辑
摘要: https://fonts.google.com/?stroke=Sans+Serif&preview.text=AI%20Assistance%20Experience&query=Noto+Sans 下载字体 放到项目中 再index.ts 中引入 import ttf from "./asse 阅读全文
posted @ 2024-01-03 11:36 卢老师不想编程 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1. 创建文件 viewportContext.tsx import React from "react"; const defaultValue = { width: window.innerWidth } const viewportContext = React.createContext(d 阅读全文
posted @ 2023-12-22 15:36 卢老师不想编程 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 解决方案 store/index.tsx import { configureStore } from '@reduxjs/toolkit'; import { useSelector, useDispatch } from 'react-redux' import type { TypedUseS 阅读全文
posted @ 2023-12-01 16:01 卢老师不想编程 阅读(188) 评论(1) 推荐(1) 编辑
摘要: 解决方案 更换国内cdn 并下载 汉化包 // 字节跳动 // https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/tinymce/4.9.3/tinymce.min.js // https://cdn.staticfile.org/tinymce/4 阅读全文
posted @ 2023-09-26 15:51 卢老师不想编程 阅读(601) 评论(0) 推荐(0) 编辑
摘要: build: { transpile: [/^element-ui/], extractCSS: { allChunks: true }, vendor: ['element-ui'] }, 阅读全文
posted @ 2023-09-14 17:22 卢老师不想编程 阅读(37) 评论(0) 推荐(0) 编辑
摘要: nodemodules中 if (shouldInjectScripts) { // APP += `<script>${serializedSession}<\/script>`; let path = this.options.buildDir + '/dist/client/init/init 阅读全文
posted @ 2023-09-14 17:18 卢老师不想编程 阅读(98) 评论(0) 推荐(0) 编辑
摘要: src/directive/permission/index import Vue from 'vue' import buttonPermissions from './permission' // 注册全局指令 Vue.directive('permiss', buttonPermissions 阅读全文
posted @ 2023-08-24 10:15 卢老师不想编程 阅读(56) 评论(0) 推荐(0) 编辑
摘要: npm install nuxt-user-agent // nuxt.config.js modules: [ 'nuxt-user-agent', ] async asyncData({ $indexApi, store, route, $baseConfigId, $accessKey, $u 阅读全文
posted @ 2023-08-14 14:13 卢老师不想编程 阅读(451) 评论(0) 推荐(0) 编辑
摘要: module.exports = { plugins: { autoprefixer: {}, //给不同的浏览器添加前缀 'postcss-px-to-viewport': { unitToConvert: 'px', //需要转换的单位 viewportWidth: '375', //视窗的宽度 阅读全文
posted @ 2023-08-14 14:08 卢老师不想编程 阅读(445) 评论(0) 推荐(0) 编辑