fix imports
This commit is contained in:
parent
5b0fcef15c
commit
d644395b35
@ -56,6 +56,7 @@
|
|||||||
import Debug from '../../ext/conf/Debug';
|
import Debug from '../../ext/conf/Debug';
|
||||||
import BrowserDetect from '../../ext/conf/BrowserDetect';
|
import BrowserDetect from '../../ext/conf/BrowserDetect';
|
||||||
import Logger from '../../ext/lib/Logger';
|
import Logger from '../../ext/lib/Logger';
|
||||||
|
import PopupExec from '../../popup/js/PopupExec';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data () {
|
data () {
|
||||||
|
@ -57,6 +57,7 @@
|
|||||||
import Debug from '../../ext/conf/Debug';
|
import Debug from '../../ext/conf/Debug';
|
||||||
import BrowserDetect from '../../ext/conf/BrowserDetect';
|
import BrowserDetect from '../../ext/conf/BrowserDetect';
|
||||||
import Logger from '../../ext/lib/Logger';
|
import Logger from '../../ext/lib/Logger';
|
||||||
|
import PopupExec from '../../popup/js/PopupExec';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data () {
|
data () {
|
||||||
@ -73,7 +74,7 @@ export default {
|
|||||||
performance: {},
|
performance: {},
|
||||||
site: null,
|
site: null,
|
||||||
currentZoom: 1,
|
currentZoom: 1,
|
||||||
execAction: new ExecAction(),
|
// execAction: new PopupExec(),
|
||||||
settings: {},
|
settings: {},
|
||||||
settingsInitialized: false,
|
settingsInitialized: false,
|
||||||
logger: {},
|
logger: {},
|
||||||
|
@ -123,12 +123,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import ExecAction from '../js/ExecAction';
|
|
||||||
import KeyboardShortcutParser from '../../common/js/KeyboardShortcutParser';
|
import KeyboardShortcutParser from '../../common/js/KeyboardShortcutParser';
|
||||||
import ShortcutButton from '../../common/components/ShortcutButton.vue';
|
import ShortcutButton from '../../common/components/ShortcutButton.vue';
|
||||||
import ComputeActionsMixin from '../../common/mixins/ComputeActionsMixin';
|
import ComputeActionsMixin from '../../common/mixins/ComputeActionsMixin';
|
||||||
|
|
||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
|
import PopupExec from '../js/PopupExec';
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
import App from './App';
|
import App from './App.vue';
|
||||||
|
|
||||||
createApp(App).mount('#app');
|
createApp(App).mount('#app');
|
||||||
|
Loading…
Reference in New Issue
Block a user