initial: generate vue+ionic

This commit is contained in:
2026-02-23 08:56:48 +07:00
commit aa8684ccaf
96 changed files with 11795 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { mount } from '@vue/test-utils'
import HomePage from '@/views/HomePage.vue'
import { describe, expect, test } from 'vitest'
describe('HomePage.vue', () => {
test('renders home vue', () => {
const wrapper = mount(HomePage)
expect(wrapper.text()).toMatch('Ready to create an app?')
})
})