Files
admin_core/demo/src/main.js
张成 c734e698de 1
2025-11-06 13:56:53 +08:00

23 lines
647 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 开发环境直接引用源码以支持热更新
import AdminFramework from '../../dist/admin-framework.js'
// 引入组件映射表
import componentMap from './router/component-map.js'
// 【超级简化】只需一个函数调用!
const app = AdminFramework.createApp({
title: 'tennis管理系统',
apiUrl: 'http://localhost:9098/admin_api/', // API 地址uploadUrl 会自动设置为 apiUrl + 'upload'
componentMap: componentMap, // 传入组件映射表,用于动态路由
onReady() {
// 可选:应用启动完成后的回调
console.log('应用已准备就绪!')
}
})
// 挂载应用
app.$mount('#app')