Closed DarkLite1 closed 4 years ago
Describe the bug After updating the package @vue/composition-api. we're receiving the error below and the page is not rendered:
@vue/composition-api
Error: [vue-composition-api] already installed.
This works fine:
// package.json "dependencies": { "@vue/apollo-composable": "^4.0.0-alpha.10", "@vue/composition-api": "1.0.0-beta.10",
This does not:
// package.json "dependencies": { "@vue/apollo-composable": "^4.0.0-alpha.10", "@vue/composition-api": "1.0.0-beta.11",
Quasar boot file:
import Vue from 'vue' import VueCompositionApi from '@vue/composition-api' Vue.use(VueCompositionApi)
Solved in another repo.
Describe the bug After updating the package
@vue/composition-api
. we're receiving the error below and the page is not rendered:This works fine:
This does not:
Quasar boot file: