You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/CscListActions.vue

46 lines
809 B

<template>
<div>
<q-slide-transition
appear
>
<slot
name="slot1"
/>
</q-slide-transition>
<q-slide-transition
appear
>
<slot
name="slot2"
/>
</q-slide-transition>
<q-slide-transition
appear
>
<slot
name="slot3"
/>
</q-slide-transition>
</div>
</template>
<script>
export default {
name: 'CscListActions',
props: {
label: {
type: String,
default: ''
}
},
data () {
return {}
}
}
</script>
<style lang="stylus" rel="stylesheet/stylus">
.csc-list-actions
margin-bottom $flex-gutter-sm
</style>