Created
June 6, 2022 14:09
-
-
Save lloydjatkinson/fc9686e7a75d15c05ec74e324c6c9481 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<span class="fa-icon" :class="icon"></span> | |
</template> | |
<script> | |
import { defineComponent } from 'vue'; | |
export default defineComponent({ | |
name: 'BreadcrumbIcon', | |
props: { | |
type: { | |
type: String, | |
required: true, | |
default: '', | |
} | |
}, | |
computed: { | |
icon () { | |
// map here | |
// return | |
} | |
}, | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment