UNPKG

vue-material-adapter

Version:

Vue 3 wrapper arround Material Components for the Web

19 lines (17 loc) 295 B
import { h } from 'vue'; export default { name: 'mcw-menu-anchor', setup(props, { slots }) { return () => { return h( 'div', { class: { 'mdc-menu-surface--anchor': 1, }, }, slots.default?.(), ); }; }, };