mirror of
https://github.com/xiangshu233/vue3-vant4-mobile.git
synced 2025-04-05 06:22:45 +08:00
65 lines
2.2 KiB
TypeScript
65 lines
2.2 KiB
TypeScript
// uno.config.ts
|
||
import {
|
||
defineConfig,
|
||
presetAttributify,
|
||
presetIcons,
|
||
presetTypography,
|
||
presetUno,
|
||
presetWebFonts,
|
||
} from 'unocss'
|
||
|
||
import transformerVariantGroup from '@unocss/transformer-variant-group'
|
||
import transformerDirectives from '@unocss/transformer-directives'
|
||
|
||
export default defineConfig({
|
||
// ...UnoCSS options
|
||
presets: [
|
||
// 此预设尝试提供流行的实用程序优先框架的通用超集,包括 Tailwind CSS、Windi CSS、Bootstrap、Tachyons 等
|
||
presetUno(),
|
||
|
||
// 图标预设: https://unocss.dev/presets/icons
|
||
presetIcons({
|
||
extraProperties: {
|
||
'display': 'inline-block',
|
||
'vertical-align': 'middle',
|
||
// ...
|
||
},
|
||
}),
|
||
|
||
// 属性模式(在 class 属性过多的情况下优先使用属性模式,否则将会变得难以维护)
|
||
// https://unocss.dev/presets/attributify#attributify-mode
|
||
presetAttributify(),
|
||
|
||
// https://unocss.dev/presets/typography#usage
|
||
presetTypography(),
|
||
|
||
// 网络字体预设:https://unocss.dev/presets/web-fonts
|
||
presetWebFonts({
|
||
// 默认字体提供商 https://unocss.dev/presets/web-fonts#providers
|
||
provider: 'google',
|
||
// https://unocss.dev/presets/web-fonts#example
|
||
fonts: {
|
||
mono: ['Fira Code'],
|
||
},
|
||
}),
|
||
],
|
||
transformers: [
|
||
// 启用 Windi CSS for UnoCSS 的变体组功能(就是简写,具体看链接): https://unocss.dev/transformers/variant-group#usage
|
||
transformerVariantGroup(),
|
||
// 在样式类里你也可以写原子化 css 具体看链接: https://unocss.dev/transformers/directives#usage
|
||
// Unknown at rule @apply: https://github.com/unocss/unocss/issues/2401
|
||
transformerDirectives(),
|
||
],
|
||
|
||
// 一些实用的自定义组合
|
||
shortcuts: {
|
||
'm-0-auto': 'm-0 ma', // margin: 0 auto
|
||
'wh-full': 'w-full h-full', // width: 100%, height: 100%
|
||
'flex-center': 'flex justify-center items-center', // flex布局居中
|
||
'flex-x-center': 'flex justify-center', // flex布局:主轴居中
|
||
'flex-y-center': 'flex items-center', // flex布局:交叉轴居中
|
||
'text-overflow': 'overflow-hidden whitespace-nowrap text-ellipsis', // 文本溢出显示省略号
|
||
'text-break': 'whitespace-normal break-all break-words', // 文本溢出换行
|
||
},
|
||
})
|