26 lines
454 B
Vue
26 lines
454 B
Vue
<template>
|
|
<MainWindow />
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
html, body, #app {
|
|
margin: 0;
|
|
height: 100%;
|
|
font-family: "Source Sans Pro", Arial, sans-serif;
|
|
font-size: 14px;
|
|
line-height: 1;
|
|
color: #ddd;
|
|
background: #222;
|
|
user-select: none;
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
import MainWindow from "./components/window/MainWindow.vue";
|
|
|
|
export default defineComponent({
|
|
components: { MainWindow },
|
|
});
|
|
</script>
|