[Vuejs]-Vue and TypeScript: Cannot find name 'exports'

0👍

I had a similar issue in the past.

may be try to import like

import Vue from 'vue'
import App from './App.vue'
import * as router from './router'
import * as store from '@/store'
  • as is the way to import on ES6

Leave a comment