Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 mdicon 组件(请参见此处)。但是图标名称没有备忘单。我尝试使用此备忘单,但效果不佳。这些名称不适用于包含多个单词的图标(例如左箭头、加标志),但它适用于单个单词图标(例如汉堡包、主页、警报)。有谁知道这个 mdicon 组件的真正备忘单?谢谢你。
试试,例如
<template> <mdicon :name="icon1"/> <template/>
<script> export default { data: () => ({ icon1: 'mdi-share-variant-outline' }) } </script>