@forwardslashns/fws-cli
Version:
CLI meant to work together with other Forwardslash boilerplates.
27 lines (24 loc) • 589 B
Plain Text
<!--Do NOT change this file manually, it is being generated by 'icons' command.-->
<template>
<component v-bind:is="component"/>
</template>
<script>
import startcase from 'lodash.startcase';
<%= imports %>
export default {
props: {
iconName: {
type: String,
required: true
}
},
components: {
<%= components %>
},
computed: {
component() {
return startcase(this.iconName.replace('ico-', '')).replace(' ', '');
}
}
};
</script>