初始化

This commit is contained in:
2025-06-10 17:03:02 +08:00
parent 67f9f51816
commit c0b62dfa0f
15 changed files with 2224 additions and 35 deletions

View File

@@ -5,6 +5,9 @@ import './style.css'
import App from './App.vue'
// 注册路由
import router from './router'
import '@fortawesome/fontawesome-free/css/all.min.css';
import AOS from 'aos'
import 'aos/dist/aos.css'
const app = createApp(App)
@@ -13,4 +16,10 @@ const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(Antd)
app.use(AOS.init({
duration: 800,
offset: 100,
easing: 'ease-in-out',
once: true
}))
app.mount('#app')