6 changed files with 920 additions and 1 deletions
File diff suppressed because it is too large
@ -0,0 +1,5 @@ |
|||||
|
import type { AttributifyAttributes } from '@unocss/preset-attributify' |
||||
|
|
||||
|
declare module '@vue/runtime-dom' { |
||||
|
interface HTMLAttributes extends AttributifyAttributes { } |
||||
|
} |
@ -0,0 +1,10 @@ |
|||||
|
import { defineConfig, presetAttributify, presetUno } from 'unocss' |
||||
|
import presetRemToPx from '@unocss/preset-rem-to-px' |
||||
|
|
||||
|
export default defineConfig({ |
||||
|
presets: [ |
||||
|
presetAttributify(), |
||||
|
presetUno(), |
||||
|
presetRemToPx(), |
||||
|
], |
||||
|
}) |
Loading…
Reference in new issue