最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue3?tailwindcss的使用教程

 更新時(shí)間:2023年08月22日 14:12:53   作者:逆風(fēng)優(yōu)雅  
Tailwind是由Adam Wathan領(lǐng)導(dǎo)的TailwindLabs開發(fā)的 CSS 框架,這篇文章主要介紹了vue3?tailwindcss的使用,需要的朋友可以參考下

Tailwind CSS

Tailwind是由Adam Wathan領(lǐng)導(dǎo)的TailwindLabs開發(fā)的 CSS 框架。

實(shí)用類

Tailwind 附帶了大量實(shí)用類。將它們組合起來并調(diào)整樣式是使用 Tailwind 進(jìn)行樣式設(shè)置的一大特點(diǎn)。實(shí)用類以相當(dāng)小的單元準(zhǔn)備,因此大多數(shù)樣式都可以通過僅組合實(shí)用類來實(shí)現(xiàn)。

Tailwind 實(shí)用類用 CSS 寫
text-red-50color: rgb(254 226 226)
text-red-100color: rgb(254 202 202)
text-red-200color: rgb(252 165 165)
text-red-300color: rgb(254 226 226)
text-red-400color: rgb(248 113 113)
text-red-500color: rgb(239 68 68)
text-red-600color: rgb(220 38 38)
text-red-700color: rgb(185 28 28)
text-red-800color: rgb(153 27 27)
text-red-900color: rgb(127 29 29)

有這么多的類,你可能會(huì)認(rèn)為很難記住這些類,但正如你在上面看到的,text-red-50 Tailwind 的實(shí)用類名稱是這樣命名的,這樣你就可以很容易地想象要應(yīng)用的樣式。

vue3 tailwindcss的使用

首先安裝依賴:

npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
npm i -D unocss

然后vite.config.ts中 引入

 
import Unocss from 'unocss/vite'
export default defineConfig({
    plugins: [
        Unocss(),
    ],
})

終端執(zhí)行:

npx tailwindcss init -p

會(huì)在項(xiàng)目根目錄下面生成兩個(gè)文件

 tailwind.config.js

module.exports = {
    content: [
        "./index.html",
        "./src/**/*.{vue,js,ts,jsx,tsx}",
    ],
    theme: {
        extend: {},
    },
    plugins: [],
}

postcss.config.js

module.exports = {
    plugins: {
        tailwindcss: {},
        autoprefixer: {},
    },
}

完成以上步驟就可以在標(biāo)簽中直接使用 tailwind 提供的相關(guān)類名了。

VScode 安裝插件 Tailwind CSS IntelliSense 會(huì)有代碼提示

到此這篇關(guān)于vue3 tailwindcss的使用的文章就介紹到這了,更多相關(guān)vue3 tailwindcss使用內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

最新評(píng)論

麻城市| 灵武市| 黄浦区| 正宁县| 诏安县| 巴林左旗| 三亚市| 赣州市| 乡城县| 红桥区| 翼城县| 黎川县| 马关县| 务川| 河北区| 陕西省| 永嘉县| 乌兰县| 巢湖市| 永年县| 沙雅县| 海晏县| 平昌县| 金堂县| 深水埗区| 固始县| 建德市| 保山市| 化州市| 鸡东县| 武威市| 衢州市| 金山区| 新蔡县| 遂溪县| 宜州市| 玉屏| 江阴市| 大新县| 沂源县| 九江市|