mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-18 07:48:02 +08:00
`/client/web` -> `/frontend` `/client/cli` -> *delete for now* `/client/native` -> *delete for now* `/core/editor` -> `/editor` `/core/document` -> `/graphene` `/core/renderer` -> `/charcoal` `/core/proc-macro` -> `/proc-macros` *(now plural)*
25 lines
375 B
Vue
25 lines
375 B
Vue
<template>
|
|
<div class="window-title">
|
|
<span>{{ title }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.window-title {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
padding: 0 8px;
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
title: { type: String, required: true },
|
|
},
|
|
});
|
|
</script>
|