mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-18 18:38:05 +08:00
16 lines
297 B
Vue
16 lines
297 B
Vue
<template>
|
|
<LayoutCol class="properties-panel"></LayoutCol>
|
|
</template>
|
|
|
|
<style lang="scss"></style>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
import LayoutCol from "@/components/layout/LayoutCol.vue";
|
|
|
|
export default defineComponent({
|
|
components: { LayoutCol },
|
|
});
|
|
</script>
|