-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79ebc2a
commit 07d68b1
Showing
3 changed files
with
47 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.fade-enter-active, | ||
.fade-leave-active { | ||
transition: opacity 0.5s ease; | ||
} | ||
|
||
.fade-enter-from, | ||
.fade-leave-to { | ||
opacity: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
import './assets/reset.css' | ||
import './assets/global.less' | ||
import 'element-plus/dist/index.css' | ||
import 'element-plus/theme-chalk/dark/css-vars.css' | ||
import { createApp } from 'vue' | ||
import { createPinia } from 'pinia' | ||
import "./assets/reset.css"; | ||
import "./assets/global.less"; | ||
import "./assets/animation.less"; | ||
import "element-plus/dist/index.css"; | ||
import "element-plus/theme-chalk/dark/css-vars.css"; | ||
import { createApp } from "vue"; | ||
import { createPinia } from "pinia"; | ||
|
||
import App from './App.vue' | ||
import router from './router' | ||
import App from "./App.vue"; | ||
import router from "./router"; | ||
|
||
import SunIcon from './components/icons/Sun.vue' | ||
import MoonIcon from './components/icons/Moon.vue' | ||
import PlayIcon from './components/icons/Play.vue' | ||
import EditIcon from './components/icons/Edit.vue' | ||
import TrashIcon from './components/icons/Trash.vue' | ||
import SunIcon from "./components/icons/Sun.vue"; | ||
import MoonIcon from "./components/icons/Moon.vue"; | ||
import PlayIcon from "./components/icons/Play.vue"; | ||
import EditIcon from "./components/icons/Edit.vue"; | ||
import TrashIcon from "./components/icons/Trash.vue"; | ||
|
||
const app = createApp(App) | ||
const app = createApp(App); | ||
app | ||
.component('SunIcon', SunIcon) | ||
.component('MoonIcon', MoonIcon) | ||
.component('PlayIcon', PlayIcon) | ||
.component('EditIcon', EditIcon) | ||
.component('TrashIcon', TrashIcon) | ||
.component("SunIcon", SunIcon) | ||
.component("MoonIcon", MoonIcon) | ||
.component("PlayIcon", PlayIcon) | ||
.component("EditIcon", EditIcon) | ||
.component("TrashIcon", TrashIcon); | ||
|
||
app.use(createPinia()) | ||
app.use(router) | ||
app.use(createPinia()); | ||
app.use(router); | ||
|
||
app.mount('#app') | ||
app.mount("#app"); |