Add some favicons
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 859 B After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 3.3 KiB |
BIN
public/icons/favicon-64x64.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 3.8 KiB |
BIN
src/assets/OYS-Burgee.png
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
BIN
src/assets/favicon-128x128.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
src/assets/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/assets/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
src/assets/favicon-64x64.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/assets/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
src/assets/favicon.ico
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
src/assets/osqqn_logo_only.png
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
src/assets/oysqn_logo.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
@@ -1,5 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<q-page class="row items-center justify-evenly">
|
<q-page class="row items-center justify-evenly">
|
||||||
|
<img alt="OYS Logo" src="~assets/oysqn_logo.png" />
|
||||||
|
<q-input v-model="name" label="Name" color="darkblue"></q-input>
|
||||||
|
<q-btn label="submit" icon="send"></q-btn>
|
||||||
<example-component
|
<example-component
|
||||||
title="Example component"
|
title="Example component"
|
||||||
active
|
active
|
||||||
@@ -17,33 +20,38 @@ import { defineComponent, ref } from 'vue';
|
|||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'IndexPage',
|
name: 'IndexPage',
|
||||||
components: { ExampleComponent },
|
components: { ExampleComponent },
|
||||||
setup () {
|
setup() {
|
||||||
const todos = ref<Todo[]>([
|
const todos = ref<Todo[]>([
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
content: 'ct1'
|
content: 'ct1',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
content: 'ct2'
|
content: 'ct2',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 3,
|
id: 3,
|
||||||
content: 'ct3'
|
content: 'ct3',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 4,
|
id: 4,
|
||||||
content: 'ct4'
|
content: 'ct4',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 5,
|
id: 5,
|
||||||
content: 'ct5'
|
content: 'ct5',
|
||||||
}
|
},
|
||||||
]);
|
]);
|
||||||
const meta = ref<Meta>({
|
const meta = ref<Meta>({
|
||||||
totalCount: 1200
|
totalCount: 1200,
|
||||||
});
|
});
|
||||||
return { todos, meta };
|
return { todos, meta };
|
||||||
}
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
name: '',
|
||||||
|
};
|
||||||
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||