feat: Implement video management with a data table and comprehensive plan and subscription management features.

This commit is contained in:
2026-02-05 18:38:10 +07:00
parent c3a8e5b474
commit 27a765044d
15 changed files with 426 additions and 886 deletions

View File

@@ -1,7 +1,9 @@
import { createApp } from './main';
import { hydrateQueryCache } from '@pinia/colada';
import 'uno.css';
import { createApp } from './main';
async function render() {
const { app, router } = createApp();
const { app, router, queryCache } = createApp();
hydrateQueryCache(queryCache, (window as any).$colada || {});
router.isReady().then(() => {
app.mount('body', true)
})