# randPerson **Repository Path**: xpsz/rand-person ## Basic Information - **Project Name**: randPerson - **Description**: 临时随机人员系统 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-11 - **Last Updated**: 2024-01-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # XP 随机抽奖 ```sh unplugin-auto-import # 自动导入 ``` ###### tailwindcss 的使用 ```sh # 安装 pnpm install tailwindcss postcss autoprefixer -D npx tailwindcss init ``` ```js // 根目录下创建 postcss.config.cjs module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, }, } // src/main.ts import './assets/css/tailwind.css' // tailwind.css @tailwind base; @tailwind components; @tailwind utilities; // 根目录下 tailwind.config.js export default { content: ['./src/**/*.{vue,js,ts,tsx,jsx}', './index.html'], theme: { extend: {}, }, plugins: [], } ```