Add web frontend panel skeleton & Vue environment

This commit is contained in:
Keavon Chambers
2021-02-16 03:21:15 -08:00
parent cd6843a63f
commit 076491c869
33 changed files with 13929 additions and 63 deletions
@@ -0,0 +1,23 @@
<template>
<div class="window-title">
<span>X-35B.gdd* - Graphite</span>
</div>
</template>
<style lang="scss">
.window-title {
display: flex;
align-items: center;
padding: 0 8px;
}
</style>
<script lang="ts">
import { Options, Vue } from "vue-class-component";
@Options({
components: {},
props: {},
})
export default class WindowTitle extends Vue {}
</script>