Revert "fix imports"

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

View File

@ -56,7 +56,6 @@
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,7 +57,6 @@
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 () {
@ -74,7 +73,7 @@ export default {
performance: {},
site: null,
currentZoom: 1,
// execAction: new PopupExec(),
execAction: new ExecAction(),
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.vue';
import App from './App';
createApp(App).mount('#app');