# candy-smart-campus-system-frontend
**Repository Path**: CandyWall/candy-smart-campus-system-frontend
## Basic Information
- **Project Name**: candy-smart-campus-system-frontend
- **Description**: 智慧校园系统前端
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 1
- **Created**: 2024-01-04
- **Last Updated**: 2024-11-20
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# 智慧校园系统前端代码
## 一、项目介绍
本项目为智慧校园系统前端代码
## 二、相关文档
`pinia`引入持久化插件手册:
`elementplus`手册:
`vue3`中引入例子特效说明文档:
引入烟花特效说明文档:
引入烟花特效需要安装`preset-firework`库,最新的安装命令为
```bash
npm i @tsparticles/preset-fireworks
```
然后引入`loadFireworksPreset()`方法,并在`init`方法中使用
```js
import { loadFireworksPreset } from '@tsparticles/preset-fireworks'
createApp(App)
.use(Particles, {
init: async engine => {
// await loadFull(engine)
await loadFireworksPreset(engine);
},
})
// 在具体组件中使用的时候
const options = {
preset: "fireworks"
}
export default options
```