mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-16 14:58:05 +08:00
24 lines
352 B
Vue
24 lines
352 B
Vue
<template>
|
|
<div :class="['layout-col']">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.layout-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import { Options, Vue } from "vue-class-component";
|
|
|
|
@Options({
|
|
components: {},
|
|
props: {},
|
|
})
|
|
export default class LayoutCol extends Vue {}
|
|
</script>
|