0
0
Fork 0
salix-front-mindshore-fork2/src/App.vue

25 lines
407 B
Vue

<script lang="ts" setup>
import { useQuasar } from 'quasar';
const quasar = useQuasar();
quasar.iconMapFn = (iconName) => {
if (iconName.startsWith('vn:')) {
const name = iconName.substring(3);
return {
cls: `icon-${name}`,
};
}
};
</script>
<template>
<router-view />
</template>
<style lang="scss">
.body--light {
background-color: #eee;
}
</style>