mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-25 11:48:12 +08:00
Rename project structure with /core and /client
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user