-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated dependencies stuck on vue router
- Loading branch information
athi
committed
Jan 16, 2024
1 parent
f11d222
commit 6446c80
Showing
11 changed files
with
9,779 additions
and
10,473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
chainWebpack: config => { | ||
config.resolve.alias.set('vue', '@vue/compat') | ||
|
||
config.module | ||
.rule('vue') | ||
.use('vue-loader') | ||
.tap(options => { | ||
return { | ||
...options, | ||
compilerOptions: { | ||
compatConfig: { | ||
MODE: 2 | ||
} | ||
} | ||
} | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
import * as am4core from "@amcharts/amcharts4/core"; | ||
import am4themes_animated from "@amcharts/amcharts4/themes/animated"; | ||
import * as am4plugins_wordCloud from "@amcharts/amcharts4/plugins/wordCloud"; | ||
import { defineNuxtPlugin } from '#app'; | ||
|
||
import Vue from "vue"; | ||
import * as am5core from "@amcharts/amcharts5"; | ||
import am5themes_animated from "@amcharts/amcharts5/themes/Animated"; | ||
import * as am5plugins_wordCloud from "@amcharts/amcharts5/wc"; | ||
|
||
Vue.prototype.$am4core = () => { | ||
return { | ||
am4core, | ||
am4themes_animated, | ||
am4plugins_wordCloud, | ||
export default defineNuxtPlugin((nuxtApp) => { | ||
nuxtApp.vueApp.config.globalProperties.$am5core = () => { | ||
return { | ||
am5core, | ||
am5themes_animated, | ||
am5plugins_wordCloud, | ||
}; | ||
}; | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
import Vue from "vue"; | ||
import DataFrame from "dataframe-js"; | ||
import { defineNuxtPlugin } from '#app'; | ||
import DataFrame from 'dataframe-js'; | ||
|
||
Vue.use(DataFrame); | ||
export default defineNuxtPlugin((nuxtApp) => { | ||
nuxtApp.vueApp.use(DataFrame); | ||
}); |
Oops, something went wrong.