NcAppNavigationNew #
Props #
Prop name | Description | Type | Values | Default |
---|---|---|---|---|
buttonId | string | - | '' | |
disabled | boolean | - | false | |
text | string | - |
Events #
Event name | Properties | Description |
---|---|---|
click |
Slots #
Name | Description | Bindings |
---|---|---|
icon |
Usage #
<template>
<NcAppNavigationNew text="New Element">
<template #icon>
<Plus :size="20" />
</template>
</NcAppNavigationNew>
</template>
<script>
import Plus from 'vue-material-design-icons/Plus'
export default {
components: {
Plus,
},
}
</script>