mirror of https://github.com/Fabio286/antares.git
remove @vue/compat
This commit is contained in:
parent
47e1f27bb8
commit
cdbadbb11a
|
@ -114,7 +114,6 @@
|
|||
"@mdi/font": "^6.1.95",
|
||||
"@turf/helpers": "^6.5.0",
|
||||
"@vscode/vscode-languagedetection": "^1.0.21",
|
||||
"@vue/compat": "^3.2.33",
|
||||
"ace-builds": "^1.4.13",
|
||||
"better-sqlite3": "^7.5.0",
|
||||
"electron-log": "^4.4.1",
|
||||
|
|
|
@ -601,9 +601,12 @@ export default {
|
|||
return false;
|
||||
},
|
||||
hasTools () {
|
||||
return this.workspace.customizations.processesList ||
|
||||
if (!this.workspace.customizations) return false;
|
||||
else {
|
||||
return this.workspace.customizations.processesList ||
|
||||
this.workspace.customizations.usersManagement ||
|
||||
this.workspace.customizations.variables;
|
||||
}
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
|
@ -115,6 +115,8 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { storeToRefs } from 'pinia';
|
||||
|
||||
import { useConnectionsStore } from '@/stores/connections';
|
||||
import { useNotificationsStore } from '@/stores/notifications';
|
||||
import { useSettingsStore } from '@/stores/settings';
|
||||
|
@ -131,7 +133,6 @@ import TableContext from '@/components/WorkspaceExploreBarTableContext';
|
|||
import MiscContext from '@/components/WorkspaceExploreBarMiscContext';
|
||||
import MiscFolderContext from '@/components/WorkspaceExploreBarMiscFolderContext';
|
||||
import ModalNewSchema from '@/components/ModalNewSchema';
|
||||
import { storeToRefs } from 'pinia';
|
||||
|
||||
export default {
|
||||
name: 'WorkspaceExploreBar',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
'use strict';
|
||||
import { createApp, configureCompat } from 'vue';
|
||||
import { createApp } from 'vue';
|
||||
import '@mdi/font/css/materialdesignicons.css';
|
||||
import 'leaflet/dist/leaflet.css';
|
||||
import '@/scss/main.scss';
|
||||
|
@ -10,11 +10,6 @@ import App from '@/App.vue';
|
|||
import { pinia } from '@/stores';
|
||||
import i18n from '@/i18n';
|
||||
|
||||
// @TODO: remove after migrating from vue2 -> vue3
|
||||
configureCompat({
|
||||
MODE: 3
|
||||
});
|
||||
|
||||
// https://github.com/probil/v-mask/issues/498#issuecomment-827027834
|
||||
const vMaskV2 = VueMaskDirective;
|
||||
const vMaskV3 = {
|
||||
|
|
|
@ -42,9 +42,7 @@ const config = {
|
|||
resolve: {
|
||||
alias: {
|
||||
'@': path.resolve(__dirname, 'src/renderer'),
|
||||
common: path.resolve(__dirname, 'src/common'),
|
||||
// @TODO: remove after migrating from vue2 -> vue3
|
||||
vue: '@vue/compat'
|
||||
common: path.resolve(__dirname, 'src/common')
|
||||
},
|
||||
extensions: ['', '.js', '.vue', '.json'],
|
||||
fallback: {
|
||||
|
|
Loading…
Reference in New Issue