- Relocated code from App.vue to their respective stores
- Linked to privacy page in wiki (related to #15)
This commit is contained in:
Shiny Nematoda 2022-09-09 18:49:13 +00:00
parent 1b5ee1d2d5
commit 44db54737b
No known key found for this signature in database
GPG key ID: 6506D50F5613A42D
17 changed files with 666 additions and 620 deletions

View file

@ -1,5 +1,5 @@
<script setup>
import { useRand } from '../scripts/colors.js';
import { useRand } from '@/scripts/colors.js';
const rand = useRand();
@ -12,7 +12,7 @@ const props = defineProps({
grad: String,
art: {
type: String,
default: 'https://upload.wikimedia.org/wikipedia/commons/c/ca/1x1.png',
default: '/1x1.png',
},
});