mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-10 08:41:09 +08:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { createApp } from 'vue'
|
|
// 导入全局样式
|
|
import './styles/index.css'
|
|
// 导入根组件
|
|
import App from './App.vue'
|
|
|
|
// 创建 Vue 应用实例
|
|
const app = createApp(App)
|
|
// 挂载应用到 DOM
|
|
app.mount('#app')
|