WangChong99

Results 2 comments of WangChong99

Div is the same thing {{div}} import {ref} from "@vue/composition-api"; const div = ref('div') ReferenceError: div is not defined

You can try this src/utils/hooks.js import {computed} from "@vue/composition-api"; import router from '../router/index.js' import store from '../store/index.js' export const useStore = () => { return store } export const useRouter...