Is it possible to use F7 Vue with PascalCase?

I love how in F7 React and Svelete, you can use the components as PascalCase (not to mention, the f7- prefix isn’t there). I tried this in F7 Vue, but it didn’t seem to work.

This is kind of a Vue limitation. It is possible but for this you will need to use Vue with JSX GitHub - vuejs/jsx: monorepo for Babel / Vue JSX related packages

Interesting, I didn’t know this. Thanks for letting me know. I definitely think Vue made a mistake not going with PascalCase as the default convention. So if I add this, I can access a component like so?
<F7PieChart />

Is there any way to do it the F7 React or Svelte way, by removing the f7- prefix? <PieChart />