After successfully downloading and installing the package, everything is working perfectly without any issues.
https://www.npmjs.com/package/vue3-toastify?activeTab=readme
My goal is to import this package once in my main.ts file so that I don't have to repeatedly import it on other pages.
Here is the snippet from my main.ts file;
// Vue Toast
import Vue3Toastify, {type ToastContainerOptions} from 'vue3-toastify';
app.use(Vue3Toastify, {
autoClose: 3000,
position: 'top-right',
theme: "light",
pauseOnFocusLoss: false,
} as ToastContainerOptions)
Although I followed the import method suggested in their documentation, unfortunately, it did not work as expected.