|
|
<template>
|
|
|
<button @click="yoho.goTap()">跳转 TAP</button>
|
|
|
<button @click="yoho.goLogin()">跳转登录</button>
|
|
|
<button @click="yoho.goShopingCart()">跳转购物车</button>
|
|
|
<button @click="yoho.goAddress()">跳转地址管理列表</button>
|
|
|
<button @click="yoho.goImageBrowser()">跳转图片浏览</button>
|
|
|
<button @click="yoho.goNewPage()">跳转新的 WAP 页面</button>
|
|
|
<button @click="yoho.goPay()">跳转支付页面</button>
|
|
|
</template>
|
|
|
<style>
|
|
|
button {
|
|
|
width: 30%;
|
|
|
height: 60px;
|
|
|
margin: 1%;
|
|
|
}
|
|
|
</style>
|
|
|
<script>
|
|
|
const yoho = require('yoho');
|
|
|
|
|
|
module.exports = {
|
|
|
data() {
|
|
|
return {
|
|
|
yoho
|
|
|
};
|
|
|
}
|
|
|
};
|
|
|
</script> |
...
|
...
|
|