Skip to content

Instantly share code, notes, and snippets.

@mrbalihai
Created October 29, 2019 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrbalihai/f5698d4c449da205e13f10e84aff6b89 to your computer and use it in GitHub Desktop.
Save mrbalihai/f5698d4c449da205e13f10e84aff6b89 to your computer and use it in GitHub Desktop.
import { Component, Vue } from 'vue-property-decorator';
import AppHtml from './app.html';
import { MapComponent, HeaderComponent, LeftPanelComponent } from '../';
@Component({
template: AppHtml,
components: {
RouteMap: MapComponent,
Header: HeaderComponent,
LeftPanel: LeftPanelComponent,
},
})
export class AppComponent extends Vue {
public created() {
this.$vuetify.theme.dark = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment