tiny-vue_version0/examples/sites/demos/pc/app/action-menu/icon.vue

80 lines
1.6 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<p>场景1只显示图标</p>
<tiny-action-menu
class="custom-icon"
:options="options"
:suffix-icon="tinyIconEllipsis"
more-text=""
spacing="12px"
:max-show-num="3"
>
</tiny-action-menu>
<p>场景2只显示文本</p>
<tiny-action-menu :options="options1" :show-icon="false" :max-show-num="3"> </tiny-action-menu>
</div>
</template>
<script>
import { ActionMenu } from '@opentiny/vue'
import { iconWebPlus, iconSuccessful, iconCloseSquare, iconEllipsis } from '@opentiny/vue-icon'
export default {
components: {
TinyActionMenu: ActionMenu
},
data() {
return {
options: [
{
label: '远程登陆',
icon: iconWebPlus()
},
{
label: '开机',
icon: iconSuccessful()
},
{
label: '关机',
icon: iconCloseSquare()
},
{
label: '重启'
},
{
label: '网络设置',
children: [{ label: '更改安全组' }, { label: '切换VPC', divided: true }]
}
],
options1: [
{
label: '远程登陆'
},
{
label: '开机'
},
{
label: '关机'
},
{
label: '重启'
},
{
label: '网络设置',
children: [{ label: '更改安全组' }, { label: '切换VPC', divided: true }]
}
],
tinyIconEllipsis: iconEllipsis()
}
}
}
</script>
<style lang="less" scoped>
p {
line-height: 1.5;
font-size: 14px;
margin-top: 30px;
}
</style>