mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-21 00:38:12 +08:00
Add web frontend panel skeleton & Vue environment
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user