You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< docs >
-- -
order : 5
title :
zh - CN : 自定义触发器
en - US : Custom trigger
-- -
# # zh - CN
要使用自定义触发器 , 可以设置 ` :trigger="null" ` 来隐藏默认设定 。
# # en - US
If you want to use a customized trigger , you can hide the default one by setting ` :trigger="null" ` .
< / docs >
< template >
< a -layout >
< a -layout -sider v -model :collapsed ="collapsed" :trigger ="null" collapsible >
< div class = "logo" / >
< a -menu v -model :selectedKeys ="selectedKeys" theme = "dark" mode = "inline" >
< a -menu -item key = "1" >
< user -outlined / >
< span > nav 1 < / span >
< / a - m e n u - i t e m >
< a -menu -item key = "2" >
< video -camera -outlined / >
< span > nav 2 < / span >
< / a - m e n u - i t e m >
< a -menu -item key = "3" >
< upload -outlined / >
< span > nav 3 < / span >
< / a - m e n u - i t e m >
< / a - m e n u >
< / a - l a y o u t - s i d e r >
< a -layout >
< a -layout -header style = "background: #fff; padding: 0" >
< menu -unfold -outlined
v -if = " collapsed "
class = "trigger"
@ click = "() => (collapsed = !collapsed)"
/ >
< menu -fold -outlined v -else class = "trigger" @ click = "() => (collapsed = !collapsed)" / >
< / a - l a y o u t - h e a d e r >
< a -layout -content
: style = "{ margin: '24px 16px', padding: '24px', background: '#fff', minHeight: '280px' }"
>
Content
< / a - l a y o u t - c o n t e n t >
< / a - l a y o u t >
< / a - l a y o u t >
< / template >
< script lang = "ts" setup >
import { ref } from 'vue' ;
import {
UserOutlined ,
VideoCameraOutlined ,
UploadOutlined ,
MenuUnfoldOutlined ,
MenuFoldOutlined ,
} from '@ant-design/icons-vue' ;
const selectedKeys = ref < string [ ] > ( [ '1' ] ) ;
const collapsed = ref < boolean > ( false ) ;
< / script >
< style >
# components - layout - demo - custom - trigger . trigger {
font - size : 18 px ;
line - height : 64 px ;
padding : 0 24 px ;
cursor : pointer ;
transition : color 0.3 s ;
}
# components - layout - demo - custom - trigger . trigger : hover {
color : # 1890 ff ;
}
# components - layout - demo - custom - trigger . logo {
height : 32 px ;
background : rgba ( 255 , 255 , 255 , 0.3 ) ;
margin : 16 px ;
}
. site - layout . site - layout - background {
background : # fff ;
}
< / style >