Skip to content
On this page

NcAppNavigationNew

Props

Prop nameDescriptionTypeValuesDefault
buttonIdstring-''
disabledboolean-false
textstring-

Events

Event namePropertiesDescription
click

Slots

NameDescriptionBindings
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>