i want to create features where we can change style on click button.
in my case im using sass/scss for my styling..
for example i have 3 different style, default.scss, dark.scss and system.scss.. the code is like this for dark.scss
// Mode
$mode: dark;
// Initialize
@import "init";
// Components
@import "./core/components/components";
@import "components/components";
// Layout
@import "layout/layout";
@import "./core/layout/docs/layout";
and on the app.vue
<style lang="scss">
@import "assets/sass/dark";
</style>
and on my test.vue i create button to change the style
<v-btn @click="light" />
<v-btn @click="dark" />
is that possible to change style with button click?
how i can do it, for example to change @import "assets/sass/dark"; to @import "assets/sass/light"; from file app.vue?
requirein a condition.