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/CscListItemTitle.vue

37 lines
611 B

<template>
<div
class="csc-list-item-title"
>
<q-icon
v-if="icon"
:name="icon"
:color="iconColor"
size="24px"
/>
<slot
/>
</div>
</template>
<script>
import {
QIcon
} from 'quasar-framework'
export default {
name: 'csc-list-item-title',
props: [
'icon',
'iconColor'
],
components: {
QIcon
},
data () {
return {}
}
}
</script>
<style lang="stylus" rel="stylesheet/stylus">
</style>