Sharkey/src/client/app/common/views/components/ui/group.vue

24 lines
305 B
Vue
Raw Normal View History

2018-06-14 08:52:37 +03:00
<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>