wechat-article / app.vue
asemxin2000's picture
Deploy wechat-article-exporter to Space
6e41657 verified
Raw
History Blame Contribute Delete
780 Bytes
<template>
<div :class="isDev ? 'debug-screens' : ''" class="flex flex-col h-screen">
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
<UNotifications />
<UModals />
</div>
</template>
<script setup lang="ts">
import { ModuleRegistry } from 'ag-grid-community';
import { AllEnterpriseModule, LicenseManager } from 'ag-grid-enterprise';
import { isDev } from '~/config';
import { isChromeBrowser } from '~/utils';
const runtimeConfig = useRuntimeConfig();
ModuleRegistry.registerModules([AllEnterpriseModule]);
LicenseManager.setLicenseKey(runtimeConfig.public.aggridLicense);
if (!isChromeBrowser()) {
alert('为了更好的用户体验,推荐使用 Chrome 浏览器。');
}
</script>
<style>
@import 'style.css';
</style>