当前位置: 首页 > article >正文

uniapp安装使用tailwindcss

1.版本说明

vue3

2.安装说明

1)执行安装

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init

2)配置tailwind.config.js

const path = require("path");

const resolve = (p) => {
  return path.resolve(__dirname, p);
};
/** @type {import('tailwindcss').Config} */
module.exports = {
  // 你要有其他目录,也必须在这里添加一下,没有添加的目录不会被tailwind处理
  content: [
    "./index.html",
    "./pages/**/*.{html,js,ts,jsx,tsx,vue}",
    "./components/**/*.{html,js,ts,jsx,tsx,vue}",
  ].map(resolve),
  // ...
  corePlugins: {
    // 跨多端可以 h5 开启,小程序关闭
    preflight: false,
  },
};

3)配置vite.config.js,如没有则自己手动创建一个即可

import path from "path";
import { defineConfig } from "vite";
import uni from "@dcloudio/vite-plugin-uni";
// 注意: 打包成 h5 和 app 都不需要开启插件配置
const isH5 = process.env.UNI_PLATFORM === "h5";
const isApp = process.env.UNI_PLATFORM === "app";
const WeappTailwindcssDisabled = isH5 || isApp;

const resolve = (p) => {
  return path.resolve(__dirname, p);
};

export default defineConfig({
  plugins: [
    uni()
  ],
  css: {
    postcss: {
      plugins: [
        require("tailwindcss")({
          // 注意此处,手动传入你 `tailwind.config.js` 的绝对路径
          config: resolve("./tailwind.config.js"),
        }),
        require("autoprefixer"),
      ],
    },
  },
});

4)引入,我是在app.vue中引入的

5)测试,随便找个路径编写样式后,查看效果即可


http://www.kler.cn/a/453173.html

相关文章:

  • Elasticsearch-脚本查询
  • 【杂谈】-现代汽车有哪些传感器
  • 使用C#生成一张1G大小的空白图片
  • 基于 Python 大数据的拼团购物数据分析系统的设计与实现
  • SOTA简繁中文拼写检查工具:FASPell Chinese Spell Checker 论文
  • AppAgent 源码 (xml 解析)
  • 从虚拟到现实:AI与AR/VR技术如何改变体验经济?
  • elementPlus消息组件多按钮案例
  • [实战]推流服务SRS安装
  • lxml 解析xml\html
  • Day50 图论part01
  • Virtualbox硬盘扩容
  • python爬虫----爬取视频实战
  • <数据集>风力发电机损伤识别数据集<目标检测>
  • 基于 LMS 算法的离散傅里叶分析器
  • 2024年12月26日Github流行趋势
  • 以太坊的演变:二层扩容的无限潜力和一键多链
  • 2023 年 12 月青少年软编等考 C 语言四级真题解析
  • git--批量修改本地用户名和邮箱
  • ovirt-engine登录报错
  • Lazydocker:高效便捷的Docker管理工具
  • Linux编程中的性能优化方法和工具
  • 精准识别花生豆:基于EfficientNetB0的深度学习检测与分类项目
  • @RequestParam和@PathVariable的解释与区别
  • 从自动驾驶到具身智能漫谈
  • 正则表达式(三剑客之sed)