Files
pojazdownik/src/mixins/imageMixin.ts
T

10 lines
198 B
TypeScript

import { defineComponent } from 'vue';
export default defineComponent({
methods: {
getIconURL(name: string, ext = 'svg'): string {
return `/images/icon-${name}.${ext}`;
},
},
});