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.
Asked
Active
Viewed 279 times
1 Answers
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
-
Try using two pairs of quotes " 'arrow-left' " – Oleksii Zelenko Feb 17 '21 at 08:14