How to import Pinia into html file for display vue3 component?
I have basic vue app of 3 components with Pinia store. I need export it and use exported .js file to display component in basic html file. Without Pinia implemenation it works well, but I need this store. App in run dev mode with store works well too. So problem is in import Pinia and call probebly this:
const pinia = Pinia.createPinia();
app.use(pinia);