fix imports

This commit is contained in:
Tamius Han 2021-03-14 01:29:05 +01:00
parent 5b0fcef15c
commit d644395b35
4 changed files with 5 additions and 3 deletions

View File

@ -56,6 +56,7 @@
import Debug from '../../ext/conf/Debug';
import BrowserDetect from '../../ext/conf/BrowserDetect';
import Logger from '../../ext/lib/Logger';
import PopupExec from '../../popup/js/PopupExec';
export default {
data () {

View File

@ -57,6 +57,7 @@
import Debug from '../../ext/conf/Debug';
import BrowserDetect from '../../ext/conf/BrowserDetect';
import Logger from '../../ext/lib/Logger';
import PopupExec from '../../popup/js/PopupExec';
export default {
data () {
@ -73,7 +74,7 @@ export default {
performance: {},
site: null,
currentZoom: 1,
execAction: new ExecAction(),
// execAction: new PopupExec(),
settings: {},
settingsInitialized: false,
logger: {},

View File

@ -123,12 +123,12 @@
</template>
<script lang="ts">
import ExecAction from '../js/ExecAction';
import KeyboardShortcutParser from '../../common/js/KeyboardShortcutParser';
import ShortcutButton from '../../common/components/ShortcutButton.vue';
import ComputeActionsMixin from '../../common/mixins/ComputeActionsMixin';
import Vue from 'vue'
import PopupExec from '../js/PopupExec';
export default Vue.extend({
data() {
return {

View File

@ -1,4 +1,4 @@
import { createApp } from 'vue'
import App from './App';
import App from './App.vue';
createApp(App).mount('#app');