16 lines
320 B
Vue
16 lines
320 B
Vue
<script setup lang="ts">
|
|
const { onRender } = useScreen();
|
|
|
|
const store = useSettingsStore();
|
|
const { assets } = useAssets();
|
|
|
|
onRender((ctx) => {
|
|
ctx.translate(0, -16 + store.notificationYOffset / 3);
|
|
assets.images.home.topScreen.background.draw(ctx, 0, 0);
|
|
});
|
|
|
|
defineOptions({
|
|
render: () => null,
|
|
});
|
|
</script>
|