1.tailwincss 使用攻略

1.1 插件安装

yarn add tailwindcss postcss autoprefixer
npx tailwindcss init -p

2.调整 tailwind.config.js 中 content 的内容

content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],

3.根样式文件引入

@tailwind base;
@tailwind components;
@tailwind utilities;