feat(VInputPassword): Add VInputPassword Component

This commit is contained in:
陈凯龙
2021-12-30 16:03:02 +08:00
parent 448ac5293e
commit a1bf7e9b55
27 changed files with 1812 additions and 1424 deletions

View File

@@ -1,5 +1,9 @@
import { defineConfig } from 'windicss/helpers'
// function range(size, startAt = 1) {
// return Array.from(Array(size).keys()).map((i) => i + startAt)
// }
export default defineConfig({
extract: {
include: ['src/**/*.{vue,html,jsx,tsx}'],
@@ -16,5 +20,14 @@ export default defineConfig({
xl: '1920px'
}
}
// height: {
// ...range(50).map((i) => `h-${i}px`)
// },
// margin: {
// // ...range(50).map((i) => `mt-${i}px`),
// // ...range(50).map((i) => `mr-${i}px`),
// // ...range(50).map((i) => `mb-${i}px`),
// // ...range(50).map((i) => `ml-${i}px`)
// }
}
})