feat: button loading, disabled(WIP), refactor to useButtonClasses, Spinner and vitest

This commit is contained in:
Alexandr
2022-07-01 15:10:23 +03:00
parent a36c3b6b65
commit bfb8cdfe67
20 changed files with 1166 additions and 135 deletions

12
vitest.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [
vue(),
],
test: {
globals: true,
environment: 'jsdom',
},
})