Vue 3 (beta) support
See original GitHub issueI installed the fullcalendar library to my Vue 3 project but when I serve the application, I get a warning in my terminal that says ""export ‘default’ (imported as ‘Vue’) was not found in ‘vue’ ".
This crashes the app with the same error when I open the browser. I tried creating the shim.d.ts with the required content but this doesnt still solve the problem.
Here is the vue component script tag.
<script lang="ts">
import { defineComponent } from "vue";
import FullCalendar from "@fullcalendar/vue";
import dayGridPlugin from "@fullcalendar/daygrid";
import interactionPlugin from "@fullcalendar/interaction";
const Calendars = defineComponent({
components: {
FullCalendar
},
setup() {
const calendarOptions = {
plugins: [ dayGridPlugin, interactionPlugin ],
initialView: "dayGridMonth"
}
return { calendarOptions }
}
});
export default Calendars;
</script>
Is there any workaround for this or is this library not supported with Vue 3?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:13
- Comments:12 (3 by maintainers)
Top Results From Across the Web
Vue 3 as the New Default
TL;DR: Vue 3 is now the new default version as of Monday, February 7, 2022! Make sure to read the Potential Required Actions...
Read more >Vue 3 Beta is released – Learn the latest news
Both Vue Router and Vuex are Vue 3 ready already - in alpha version. Vue cli comes with experimental support for the moment....
Read more >Vue 3 Beta - Installation and New Features - YouTube
As one of four official Vue.js partners, the Modus team was excited to dive into the newly released Vue 3.0.0- beta.1 and explore...
Read more >Get started with Vuetify 3
Get started with Vuetify, the world's most popular Vue.js framework for building feature rich, blazing fast applications. #Installation. To get started with ...
Read more >Vuetify 3 has gone beta, meaning its API is now stable - Reddit
Why so slow on Vue3 support! Have opted for Quasar on latest project. No regrets so far ;).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have this simple component to make fullcalendar work on vue3 + vite
a PR with Vue v3 support would be very welcome!