Revert "style: lint"

This reverts commit 98f40d7d0b.
This commit is contained in:
Neko Ayaka
2026-08-26 20:13:10 +08:00
parent cfcfc513ef
commit 146b3da65a
1625 changed files with 75440 additions and 75453 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ import App from './App.vue'
import '@unocss/reset/tailwind.css'
import 'uno.css'
const router = createRouter({ history: createWebHashHistory(), routes })
const router = createRouter({ routes, history: createWebHashHistory() })
createApp(App)
.use(router)
@@ -11,12 +11,12 @@ export const weatherComponent = defineCallingComponent(
Weather,
object({
city: string(),
condition: string(),
temperature: string(),
condition: string(),
}),
{
city: 'Tokyo',
condition: 'Sunny',
temperature: '25°',
condition: 'Sunny',
},
)
@@ -6,9 +6,9 @@ import { toJsonSchema } from 'xsschema'
export function defineCallingComponent<T extends Schema>(name: string, component: Component, schema: T, exampleProps?: Record<string, any>) {
return {
component: markRaw(component),
exampleProps,
name,
schema: toJsonSchema(schema),
component: markRaw(component),
exampleProps,
}
}