本地 RAG 知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
433 B

/**
* SDK 测试面板入口(多页应用)
*
* 独立于管理后台 main 入口,产物构建到 dist/sdk-test.html,
* 由 cp-to-static.mjs 移动到 static/sdk/test.html。
*/
import { createApp } from 'vue'
import TDesign from 'tdesign-vue-next'
import 'tdesign-vue-next/es/style/index.css'
import SdkTestPanel from './SdkTestPanel.vue'
const app = createApp(SdkTestPanel)
app.use(TDesign)
app.mount('#sdk-test-app')