mirror of
https://github.com/Spythere/pojazdownik.git
synced 2026-05-03 05:18:10 +00:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
methods: {
|
|
getIconURL(name: string, ext = 'svg'): string {
|
|
return `/images/icon-${name}.${ext}`;
|
|
},
|
|
},
|
|
});
|