vite 简介 vite 是 vue 作者尤雨溪基于 esm 实现本地脚手架工具,最大的特点是速度快,但是不兼容 IE 11。 兼容性查询地址 vite 脚手架常用设置 vite 的设置文件名为 vite.config.js,如果需要类型提示的话也可以使用 vite.config.ts。vite 更 ...
分类:
其他好文 时间:
2021-06-10 18:51:31
阅读次数:
0
先上效果图 HTML代码 <div echarts #myEchart [options]="option"></div> ts代码 import { Component, OnInit, ViewChild, ElementRef } from '@angular/core'; import { ...
分类:
其他好文 时间:
2021-06-10 17:57:42
阅读次数:
0
liquidjs 是兼容shopify liquid 的纯js 模板引擎,同时官方文档也比较完整 支持的特性 安全渲染(没有eval 以及Function 使用) shopify 兼容 零依赖 ts 支持 参考使用 app.js const { Liquid } = require('liquidj ...
分类:
Web程序 时间:
2021-05-24 12:21:30
阅读次数:
0
子组件 child.vue <template> <div> <p>hello world</p> <button @click="handleClick">click</button> </div> </template> <script lang="ts"> import { defineCom ...
分类:
其他好文 时间:
2021-05-24 05:33:32
阅读次数:
0
PS C:\ycm\test\ts-newProjet> git pull origin master * branch master -> FETCH_HEAD fatal: refusing to merge unrelated histories 在新建项目时报refusing to merg ...
分类:
其他好文 时间:
2021-05-24 01:24:52
阅读次数:
0
测试ts代码的时候 为了方便 不用tsc去编译 直接用ts-node去联调ts代码 安装typescript npm install -g typescript //$ tsc -v //Version 3.2.2 安装ts-node npm官方地址https://www.npmjs.com/pac ...
分类:
其他好文 时间:
2021-05-04 16:33:48
阅读次数:
0
// ts版-vue private justPalyOne() { const audios = document.querySelectorAll("audio"); // 暂停函数 const pauseAll = (exclude: any): any => { audios.forEach ...
分类:
其他好文 时间:
2021-04-27 15:20:20
阅读次数:
0
外观模式 环境搭建 npm init -y npm i vite -D 外观模式简介: 是一种通过为多个复杂的子系统提供一个一致的接口,而使这些子系统更加容易被访问的模式。该模式对外有一个统一接口,外部应用程序不用关心内部子系统的具体细节,这样会大大降低应用程序的复杂度,提高了程序的可维护性。 优点 ...
分类:
其他好文 时间:
2021-04-22 15:35:04
阅读次数:
0
写一个符合 Promise A+ 规范的 Promise 类型定义 // MyPromise.ts type resType = (value?: any) => void; type rejType = (reason?: any) => void; type executorType = (re ...
分类:
其他好文 时间:
2021-04-20 14:26:37
阅读次数:
0
在 window-ref.ts 的实现里,定义了一个每隔 300 毫秒,通过 fromEvent 发射一个 resize event 的Observable: /** * Returns an observable for the window resize event and emits an e ...
分类:
Web程序 时间:
2021-04-19 16:03:11
阅读次数:
0