[SOLVED] How to use ios theme in the new f7-vue app initialization

Vue.use(Framework7Vue);

new Vue({
el: ‘#app’,
render: h => h(Home),
// Framework7 Parameters
framework7: {
root: ‘#app’, //Should be same as app el
animateNavBackIcon: true,
ios:true, // Doesen’t work
theme:ios // also doesent work
routes: Routes
}
})

Theme is a string parameter! theme:”ios”

Of course. :sweat_smile:

Thanks !