aboutsummaryrefslogtreecommitdiffstats
path: root/settings/src/components/popoverMenu/popoverItem.vue
blob: 343c4638005459d16a4a06af4374c3643722d993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
	<li>
		<a @click="item.action" v-if="item.href" :href="(item.href) ? item.href : '#' ">
			<span :class="item.icon"></span>
			<span>{{item.text}}</span>
		</a>
		<button @click="item.action" v-else>
			<span :class="item.icon"></span>
			<span>{{item.text}}</span>
		</button>
	</li>
</template>

<script>
export default {
	props: ['item']
}
</script>