Custom icons
<script setup>
import EqualIcon from "./images/equal.svg?component";
</script>
<UIcon :src="EqualIcon" />Custom library
export default {
component: {
UIcon: {
defaults: {
library: "custom", /* tells Vueless that the library is custom */
path: "src/assets/icons", /* path to the icons folder from the project root */
}
}
}
};Last updated