wip
This commit is contained in:
parent
3a4833818f
commit
a1ae832129
12 changed files with 658 additions and 346 deletions
23
src/client/app/common/views/components/ui/group.vue
Normal file
23
src/client/app/common/views/components/ui/group.vue
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<template>
|
||||
<div class="ui-group">
|
||||
<header>
|
||||
<slot name="title"></slot>
|
||||
</header>
|
||||
|
||||
<slot></slot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import Vue from 'vue';
|
||||
export default Vue.extend({});
|
||||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
@import '~const.styl'
|
||||
|
||||
.ui-group
|
||||
> header
|
||||
font-weight bold
|
||||
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue