Files
barter-app/pages/store/index.vue
2021-08-09 17:20:38 +08:00

32 lines
417 B
Vue

<template>
<view>
<view class="">店铺</view>
<!-- 登录 -->
<button type="default" @click="login">登录</button>
</view>
</template>
<script>
import userAuth from '@/public/userAuth'
export default {
data() {
return {
}
},
methods: {
login(){
let auth = new userAuth()
auth.Login()
// auth.keyLogin()
// auth.smsLogin()
}
}
}
</script>
<style>
</style>