Is it possible to use Vue inside a web component I am building ?
I am using vite for building. I use the f7-range, but no content is rendered. I am not sure how to setup vue as there is no main.js in a web component. I setup vue in the root component foo.ce.vue the following way:
import Framework7 from 'framework7/lite-bundle'
import Framework7Vue from 'framework7-vue/bundle'
Framework7.use(Framework7Vue);
Is it possible to use Vue inside a web component I am building ? I am using vite for building. I use the f7-range, but no content is rendered. I am not sure how to setup vue as there is no main.js in a web component. I setup vue in the root component foo.ce.vue the following way:
And using it like this:
import {f7Range} from 'framework7-vue';
<f7-range :min="0" :max="100" :step="1" :value="10" />