Browse Source

edit url

YWQ
chutingting 1 year ago
parent
commit
350e630683
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/components/home/home.vue

+ 3
- 3
src/components/home/home.vue View File

@@ -48,7 +48,7 @@
> >
{{ characters == 1 ? "立刻体验" : "Try it now" }} {{ characters == 1 ? "立刻体验" : "Try it now" }}
</div> --> </div> -->
<div class="title_btn" @click="toPhotoTalk">
<div class="title_btn" @click="toPhotoTalk('top')">
{{ characters == 1 ? "立刻体验" : "Try it now" }} {{ characters == 1 ? "立刻体验" : "Try it now" }}
</div> </div>
</div> </div>
@@ -850,8 +850,8 @@ export default {
methods: { methods: {
...mapActions(["setCharacters"]), ...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) { enterSwiper(index) {


Loading…
Cancel
Save