feat: add vue-golang-mysql sample

Signed-off-by: fffzlfk <1319933925qq@gmail.com>
This commit is contained in:
fffzlfk
2022-09-03 14:21:46 +08:00
parent c2f8036fd3
commit 6143cd20b0
58 changed files with 4951 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
// Vitest Snapshot v1
exports[`Counter.vue > should render 1`] = `"<div>10 <button class=\\"inc\\"> + </button><button class=\\"dec\\"> - </button></div>"`;

View File

@@ -0,0 +1,7 @@
import { describe, expect, it } from 'vitest'
describe('Hi', () => {
it('should works', () => {
expect(1 + 1).toEqual(2)
})
})