add input expand and retract animations as well as minor improvements

This commit is contained in:
riqo 2021-03-13 14:26:28 -06:00
commit 65e8a8eb86
4 changed files with 56 additions and 34 deletions

View file

@ -4,7 +4,6 @@ import App from "./App.vue";
import router from "./router";
import mitt from "mitt";
import anime from "animejs";
import { createApp } from "vue";
@ -14,6 +13,5 @@ const emitter = mitt();
const app = createApp(App)
app.use(router)
app.provide("animejs", anime)
app.provide("mitt", emitter)
app.mount("#app");