[Vuejs]-Use vue store in service-worker

0👍

It could be

import store from "../src/store/main.js"

or simply

import store from "store/main.js"

It actually depends on which file this import statement is placed,
not clear for me in your question.

Leave a comment