App.vue
369 Bytes
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: 'App',
mounted() {
document.querySelector('html').setAttribute('class', 'theme-white');
}
}
</script>
<style lang="scss">
body {
@include themify($themes) {
color: themed('text');
background-color: themed('background');
}
}
</style>