You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
390 B

<template>
1 year ago
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
1 year ago
export default {
name: 'App',
components: {}
}
</script>
<style lang="scss">
#app {
1 year ago
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
height: 100%;
width: 100%;
color: var(--im-text-color);
font-family: var(--im-font-family);
}
1 year ago
</style>