I would like to know how do I include only one component without having to add Vue.use(framework7-vue).
Currently I only need to use the Calendar component and would like to be able to include it like so:
import { Calendar } from 'framework7-vueexport default {components: {Calendar}}
currently I see in dist/framework7.vue.js all the components are included in the component property this could potentially be exported at the bottom of the file.
It would also be nice if the components CSS was included in the component itself but that's not an issue right now
Hello,
I would like to know how do I include only one component without having to add Vue.use(framework7-vue). Currently I only need to use the Calendar component and would like to be able to include it like so:
import { Calendar } from 'framework7-vue
export default {
components: {
Calendar
}
}
currently I see in dist/framework7.vue.js all the components are included in the component property this could potentially be exported at the bottom of the file.It would also be nice if the components CSS was included in the component itself but that's not an issue right now
Thanks for the great work!