fix imports
This commit is contained in:
parent
5b0fcef15c
commit
d644395b35
@ -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 () {
|
||||
|
@ -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: {},
|
||||
|
@ -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 {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App';
|
||||
import App from './App.vue';
|
||||
|
||||
createApp(App).mount('#app');
|
||||
|
Loading…
Reference in New Issue
Block a user