瀏覽代碼

Create buttons

pull/5/head
Svitlana 4 年之前
父節點
當前提交
0c5ce8ce1b
共有 1 個檔案被更改,包括 5 行新增2 行删除
  1. +5
    -2
      src/account/AppLoginPage.vue

+ 5
- 2
src/account/AppLoginPage.vue 查看文件

@@ -3,9 +3,9 @@
<div>
<div>
<hr/>
<div @click="checkMeSession">{{messages.link_label_account}}</div>
<button @click="checkMeSession">{{messages.link_label_account}}</button>
<hr/>
<router-link :to="linkPrefix+'/'">{{messages.link_label_bubble}}</router-link>
<button @click="uploadBubble">{{messages.link_label_bubble}}</button>
</div>
</div>
</template>
@@ -58,6 +58,9 @@
this.$router.push('/login');
}
},
uploadBubble(){
this.$router.push('/');
}
},
watch: {
user (u) {


Loading…
取消
儲存