mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 22:30:28 +08:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
/**
|
|
* 二级菜单
|
|
*/
|
|
Vue.component("inner-menu", {
|
|
template: `
|
|
<div class="second-menu" style="width:80%;position: absolute;top:-8px;right:1em">
|
|
<div class="ui menu text blue small">
|
|
<slot></slot>
|
|
</div>
|
|
</div>`
|
|
}); |