- Django后端API服务 - Vue前端界面 - 集成王璞智能分析API - 任务管理和报告生成功能 - Element Plus UI组件 - 响应式布局设计 |
||
|---|---|---|
| .. | ||
| dist | ||
| LICENSE | ||
| README.md | ||
| index.js | ||
| package.json | ||
README.md
@vue/runtime-dom
import { h, createApp } from '@vue/runtime-dom'
const RootComponent = {
render() {
return h('div', 'hello world')
},
}
createApp(RootComponent).mount('#app')