UNPKG

vue-material-adapter

Version:

Vue 3 wrapper arround Material Components for the Web

14 lines (10 loc) 266 B
import { onMounted, ref } from 'vue'; export default { name: 'mcw-chip-checkmark', setup() { const width = ref(0); const root = ref(); onMounted(() => (width.value = root.value.getBoundingClientRect().height)); return { width, root }; }, };