Skip to content

Files

Latest commit

 

History

History
78 lines (71 loc) · 2.09 KB

index.md

File metadata and controls

78 lines (71 loc) · 2.09 KB
layout hero features
home
name text tagline image actions
@pureadmin/utils
常用的工具函数(utils、hooks)
共139个工具函数,帮助提高开发效率
src alt
/logo.png
@pureadmin/utils
theme text link
brand pure-utils-start
快速开始
/guide/guide
theme text link
alt pure-utils-github
文档仓库
theme text link
pure pure-doc
pure-admin-doc
theme text link
pure pure-table
pure-admin-table
icon title details
🌎
任意 JavaScript 环境中运行
支持 Node.js、浏览器以及任意 JavaScript 框架
icon title details
📡
可通过 CDN 引用
同时支持 jsdelivr 和 unpkg
icon title details
⚡️
完全可摇树
自带 Tree-shaking ,只对引入的代码进行打包
icon title details
💫
零依赖
零 Dependencies 依赖,只会安装项目本身
icon title details
🦾
强类型
使用 TypeScript 编写,拥有强大的类型推导提示
icon title details
💯
100%测试
100% 测试覆盖率,100% 测试通过率
<script setup> import './.vitepress/theme/style/home-links.css' import { onMounted } from 'vue' // import { useMessage } from "./components/message" import { addReleaseTag } from './.vitepress/utils/createElement.ts' onMounted(() => { addReleaseTag() }) // const mess = h("span", {}, [ // "文档使用", // h( // "a", // { // href: "https://vitepress.vuejs.org/", // target: "_blank", // style: { // color: "#409eff", // }, // }, // [" vitepress "] // ), // h( // "span", // "编写,vitepress 处于非稳定版本阶段,如点击页面遇到卡顿,请刷新浏览器即可" // ), // ]) // const { message } = useMessage() // if(process.env.NODE_ENV !== 'development') message?.info(() => mess, { closable: true, duration: 12000 }) </script>