12 lines
194 B
Vue
12 lines
194 B
Vue
<script setup lang="ts">
|
|
useRender((ctx) => {
|
|
ctx.font = "10px NDS10";
|
|
ctx.fillStyle = "#000000";
|
|
ctx.fillText("Startup", 10, 20);
|
|
});
|
|
|
|
defineOptions({
|
|
render: () => null,
|
|
});
|
|
</script>
|