摘要: 关于 Web Components 关于 Vue3.2definecustomelementApi 关于 Vue & Web Component 在Vue3.2中实现一个dialog 1. 修改vite.config.ts import {defineConfig} from 'vite' impo 阅读全文
posted @ 2022-06-30 11:22 demo_you 阅读(1131) 评论(1) 推荐(1) 编辑
摘要: > 关于[`Web Components`](https://developer.mozilla.org/zh-CN/docs/Web/Web_Components) `Vite`为工程依赖 `Ts`语言开发 ```html open wo cao nb ``` ```typescript /* . 阅读全文
posted @ 2022-06-29 18:28 demo_you 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Suspense 组件 Suspense是Vue3.2新增的内置组件,与React.Suspense组件类似。 Suspense有两个插槽:default和fallback default插槽中存放具有深层异步依赖的组件/(异步组件) 当default中的组件状态未变成fulfilled(完成且未抛 阅读全文
posted @ 2022-06-16 12:17 demo_you 阅读(550) 评论(0) 推荐(0) 编辑
摘要: Object.entries 的实现 const demo = {a: 1, b: 2} const entries = (o = {}) => { const keys = Object.keys(o) return keys.map(v => [v, o[v]]) } const result 阅读全文
posted @ 2022-05-27 11:38 demo_you 阅读(111) 评论(0) 推荐(0) 编辑
摘要: // 默认缓存期限为7天 const DEFAULT_CACHE_TIME = (60 * 60 * 24) * 7 /** * 本地缓存类 * @class Storage */ class Storage { private storage private prefixKey?: string 阅读全文
posted @ 2022-05-23 17:44 demo_you 阅读(328) 评论(0) 推荐(1) 编辑
摘要: snow.js import * as THREE from "three"; class Snow { #time = 0 #textureLoader = new THREE.TextureLoader() constructor(num = 0, range = 0, texture = '' 阅读全文
posted @ 2022-05-11 10:07 demo_you 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 1. 安装 svg-sprite-loader npm i svg-sprite-loader --save-dev 2. SvgIcon component <!-- /src/components/SvgIcon/icon.vue --> <script setup lang="ts"> imp 阅读全文
posted @ 2021-10-26 14:09 demo_you 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 1. 关于树莓派 Raspberry Pi(中文名为“树莓派”,简写为RPi,或者RasPi/RPi)是一种小型电脑,只有信用卡大小的卡片式电脑,其系统基于Linux。 树莓派有40个GPIO针脚,可以通过它们输出高低电平或者通过它们读入引脚的状态-是高电平或是低电平。可使用Python/NodeJ 阅读全文
posted @ 2021-09-29 07:27 demo_you 阅读(389) 评论(0) 推荐(0) 编辑
摘要: MIXINS elevator.js import Velocity from 'velocity-animate'; import {on, off, isInContainer} from 'element-ui/src/utils/dom'; import _ from 'lodash' ex 阅读全文
posted @ 2021-07-23 11:56 demo_you 阅读(847) 评论(2) 推荐(1) 编辑
摘要: Number.prototype.toLocaleString([locales [, options]]) toLocaleString()方法返回这个数字在特定语言环境下的表示字符串。 新的 locales 和 options 参数让应用程序可以指定要进行格式转换的语言,并且定制函数的行为。 d 阅读全文
posted @ 2021-06-24 20:13 demo_you 阅读(853) 评论(0) 推荐(0) 编辑