0

I want to use mdicon component (see here). But there's no cheatsheet for the icon names. I tried to use this cheatsheet but it's not working as well. The names don't work for icons with more than one word (e.g. arrow-left, flag-plus) but it does work for single word icons (e.g. hamburger, home, alert). Does anyone know the real cheatsheet for this mdicon component? Thank you.

1 Answers1

0

Try, for example

<template>
<mdicon :name="icon1"/>
<template/>
<script>
export default {
  data: () => ({
    icon1: 'mdi-share-variant-outline'
})
}
</script>
Oleksii Zelenko
  • 2,311
  • 3
  • 7
  • 21