I am trying to switch from the fabric theme to fabric-dark theme when switching from light mode to dark mode. I am setting up the application with v-app from vuetify. I wondering if its possible to switch between themes. Code Example of the template section below
MainApp.Vue
<template>
<v-app :dark="getDarkMode">
<v-content>
<v-container fluid>
<v-layout>
<ejs-grid
:dataSource="data">
<e-column field="userId" width="120"></e-column>
<e-column field="username" headerText="Username" textAlign="Center" width="120"></e-column>
</ejs-grid>
</v-layout>
</v-container>
</v-content>
</v-app>
</template>