修复资源引入的问题

This commit is contained in:
05412 2024-08-13 16:59:12 +08:00
parent 8b674fcbdb
commit 9e79b5ce05
8 changed files with 6 additions and 5 deletions

View File

@ -4,12 +4,12 @@
"start_url": "/",
"icons": [
{
"src": "src/assets/icons/android-chrome-192x192.png",
"src": "/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "src/assets/icons/android-chrome-512x512.png",
"src": "/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
@ -19,13 +19,13 @@
"display": "standalone",
"screenshots": [
{
"src": "src/assets/icons/android-chrome-512x512.png",
"src": "/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "src/assets/icons/android-chrome-512x512.png",
"src": "/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png",
"form_factor": "narrow"

View File

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

Before

Width:  |  Height:  |  Size: 8.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

Before

Width:  |  Height:  |  Size: 566 B

After

Width:  |  Height:  |  Size: 566 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,5 +1,6 @@
<script setup lang="ts">
import {ref} from "vue";
import hero from "../../assets/img/hero.svg?url"
const slogans = [
"TRY OUR SERVICES FOR FREE",
@ -38,7 +39,7 @@ function showSlogan(i: number) {
</script>
<template>
<v-img class="intro-view-banner" src="/src/assets/img/hero.svg">
<v-img class="intro-view-banner" :src="hero">
<span class="intro-slogan"> &gt;&nbsp;{{ show }}<span
:class="{'intro-slogan-hidden': !showIndicator}">_</span> </span>
</v-img>