Tailwind CSS with Vue
创建Vue项目
npm create vite@latest my-project -- --template vue
cd my-project
安装Tailwind CSS,创建tailwind.config.js
和postcss.config.js
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
配置tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}
添加Tailwind指令到全局css文件中,此处文件地址比如在./src/style.css
@tailwind base;
@tailwind components;
@tailwind utilities;
在main.js
入口引入style.css
import { createApp } from 'vue'
import './style.css'
启动项目
npm run dev
在模板中使用tailwindcss
<template>
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
</template>
可以看到页面上此时已经有效果了。
具体使用教程可以查看官方文档。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。