1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 18x 18x 18x 18x 18x 18x 18x | <template> <b-link class="dropdown-item" I role="menuitem" v-bind="linkProps" E @click="$emit('click', $event)"> <slot></slot> </b-link> </template> <script> import { props, computed } from '../mixins/link'; import bLink from './link.vue'; export default { components: { bLink }, props, computed: { linkProps: computed.linkProps } }; </script> |