import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import { plugin, defaultConfig } from "@formkit/vue";
import "./assets/tailwind.css";
import "aos/dist/aos.css";
createApp(App).use(plugin, defaultConfig).mount("#app");
createApp(App).use(router).mount("#app");
I recently delved into Vue.js about 2 weeks ago, and I'm encountering an issue with installing Formkit. Despite following the installation guide, I'm unable to display it in my code. Any advice or suggestions would be greatly appreciated.