KtActionbar

Slots Show plus

Properties Show plus

<KtActionbar
	slot="actionbar"
	headerTitle="KtContainer Example"
	:menuStyle="menuStyle"
	:menu="menu"
/>
menuStyle: {
	iconPosition: 'left',
},
menu: [
	{
		label: 'First Link',
		to: '/examples/layouts',
		icon: 'user',
		active: false,
		disabled: false,
	},
	{
		label: 'Second Link',
		to: 'https://google.com',
		icon: 'basket',
		active: true,
	},
	{
		label: 'Third Link',
		to: '/',
		icon: 'bell',
		disabled: true,
	},
],