17 lines
202 B
Vue
17 lines
202 B
Vue
|
<template>
|
||
|
<view class="SignMultiple">
|
||
|
登录
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import "./login.scss";
|
||
|
import Taro, { useLoad } from "@tarojs/taro";
|
||
|
|
||
|
|
||
|
useLoad(() => {
|
||
|
|
||
|
});
|
||
|
|
||
|
</script>
|