salix-front/src/App.vue

25 lines
397 B
Vue
Raw Normal View History

2022-03-24 14:02:30 +00:00
<script 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>
2022-03-24 12:33:14 +00:00
<template>
2022-03-24 13:57:11 +00:00
<router-view />
2022-03-24 12:33:14 +00:00
</template>
2022-03-24 14:02:30 +00:00
<style lang="scss">
.body--light {
background-color: #eee;
}
</style>