feat(module): add support for vue using unplugin (#2416)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
Daniel Roe
2024-10-25 16:15:26 +01:00
committed by GitHub
parent 50c6bf0092
commit d4a943e631
97 changed files with 18948 additions and 117 deletions

View File

@@ -52,7 +52,7 @@ describe('Button', () => {
let resolve: any | null = null
const wrapper = await mountSuspended({
components: { Button },
async setup() {
setup() {
function onClick() {
return new Promise(res => resolve = res)
}
@@ -80,7 +80,7 @@ describe('Button', () => {
let resolve: any | null = null
const wrapper = await mountSuspended({
components: { Button, UForm },
async setup() {
setup() {
function onSubmit() {
return new Promise(res => resolve = res)
}