chore(ai-tab-switch): replace local images with remote oss urls
delete local image assets and update component imports to use remote hosted images
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 8.2 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 7.9 KiB |
@@ -18,10 +18,11 @@
|
|||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed } from "vue";
|
import { computed } from "vue";
|
||||||
import leftSelected from "./images/L_02.png";
|
|
||||||
import leftUnselected from "./images/L_01.png";
|
const leftSelected = "https://oss.nianxx.cn/mp/static/xiaoqi/L_02.png";
|
||||||
import rightSelected from "./images/R_02.png";
|
const leftUnselected = "https://oss.nianxx.cn/mp/static/xiaoqi/L_01.png";
|
||||||
import rightUnselected from "./images/R_01.png";
|
const rightSelected = "https://oss.nianxx.cn/mp/static/xiaoqi/R_02.png";
|
||||||
|
const rightUnselected = "https://oss.nianxx.cn/mp/static/xiaoqi/R_01.png";
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
modelValue: { type: Number, default: 0 },
|
modelValue: { type: Number, default: 0 },
|
||||||
|
|||||||
Reference in New Issue
Block a user