Hello, I hope you are doing well.
I'm using current version of vue metronic, and I would like to make an app where it is possible and easy to change the theme (from demo 1 to demo 2, or to demo 8 to demo 6 for example) in the app. So let say I have built an app in demo 1 for example, the only way(for me) to create an other app with the same features could be to copy and paste all components from built app to the new app. I would like to ask you if there could be another way since all demos have basically the same structure
Hi,
Thank you for reaching out to us.
All our demos differ only in the main layout component and styles, page content is the same in all our demos.
The layout-specific styles are located in folder src/assets/sass/layout, please note that besides layout-specific styles, each demo uses different color variables I think the easiest way to have a few demos in one app is by using a whole demo src/assets/style.scss inside a layout scope.
<style lang="scss" scoped>
@import "assets/sass/style";
</style>