mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
Merge pull request #61 from Pandipipas/remove-graphic/example
Remove unused example graphic
This commit is contained in:
@@ -72,11 +72,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"graphics": [
|
"graphics": [
|
||||||
{
|
|
||||||
"file": "example/main.html",
|
|
||||||
"width": 1920,
|
|
||||||
"height": 1080
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"file": "scoreboard/main.html",
|
"file": "scoreboard/main.html",
|
||||||
"width": 1920,
|
"width": 1920,
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,8 +0,0 @@
|
|||||||
import { createHead } from '@unhead/vue/client';
|
|
||||||
import { createApp } from 'vue';
|
|
||||||
import App from './main.vue';
|
|
||||||
|
|
||||||
const app = createApp(App);
|
|
||||||
const head = createHead();
|
|
||||||
app.use(head);
|
|
||||||
app.mount('#app');
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
<script setup lang="ts">
|
|
||||||
import { useHead } from '@unhead/vue';
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { exampleReplicant } from '../../browser_shared/replicants';
|
|
||||||
import type { ExampleType } from '../../types';
|
|
||||||
|
|
||||||
useHead({ title: 'example' }); // set the title of this page
|
|
||||||
const text = ref('Example');
|
|
||||||
|
|
||||||
// Example code: accessing normal types.
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
||||||
const exampleType: ExampleType = { exampleProperty: 'exampleString' };
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<div>
|
|
||||||
{{ text }}
|
|
||||||
<br><br>
|
|
||||||
<img src="./image.png">
|
|
||||||
<br><br>
|
|
||||||
<!-- Example code: accessing a replicant. -->
|
|
||||||
{{ exampleReplicant?.data?.exampleProperty }}
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
Reference in New Issue
Block a user