소스 검색

edit url

YWQ
chutingting 1 년 전
부모
커밋
350e630683
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      src/components/home/home.vue

+ 3
- 3
src/components/home/home.vue 파일 보기

@@ -48,7 +48,7 @@
>
{{ characters == 1 ? "立刻体验" : "Try it now" }}
</div> -->
<div class="title_btn" @click="toPhotoTalk">
<div class="title_btn" @click="toPhotoTalk('top')">
{{ characters == 1 ? "立刻体验" : "Try it now" }}
</div>
</div>
@@ -850,8 +850,8 @@ export default {
methods: {
...mapActions(["setCharacters"]),
// 去照片说话网页
toPhotoTalk() {
window.open("https://neuver.metavatar.cc");
toPhotoTalk(tag) {
window.open(tag === 'top' ? 'https://photo.metavatar.cc' : "https://neuver.metavatar.cc");
},
// 鼠标进入轮播图
enterSwiper(index) {


불러오는 중...
취소
저장