playground: lint

This commit is contained in:
Benjamin Canac
2024-04-12 14:00:00 +02:00
parent 786ee8e7e2
commit 02d55b0edb
9 changed files with 26 additions and 28 deletions

View File

@@ -21,11 +21,11 @@ const state = reactive<Partial<Schema & { nested: Partial<NestedSchema> }>>({
const checked = ref(false)
function onSubmit (event: FormSubmitEvent<Schema>) {
function onSubmit(event: FormSubmitEvent<Schema>) {
console.log('Success', event.data)
}
function onError (event: any) {
function onError(event: any) {
console.log('Error', event)
}
</script>