Create Nuxt.js app

This commit is contained in:
2020-12-16 12:07:05 +01:00
parent 1223bffe6b
commit 5328f5eb51
22 changed files with 15550 additions and 0 deletions

9
test/Logo.spec.js Normal file
View File

@@ -0,0 +1,9 @@
import { mount } from '@vue/test-utils'
import Logo from '@/components/Logo.vue'
describe('Logo', () => {
test('is a Vue instance', () => {
const wrapper = mount(Logo)
expect(wrapper.vm).toBeTruthy()
})
})