32 lines
417 B
Vue
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>
|