| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="flex flex-col w-[80vw]">
- <cl-button type="success" @tap="wechatLogin">
- <cl-image src="https://oss.xiaoxiongcode.com/static/个人中心/微信.png" mode="heightFix" height="20px"
- width="auto"></cl-image>
- 成功按钮</cl-button>
- </view>
- </template>
- <script setup lang="ts">
- import { type PropType } from "vue";
- import type { LoginForm } from "./types";
- import { useRefs, } from "@/.cool";
- const props = defineProps({
- form: {
- type: Object as PropType<LoginForm>,
- default: () => ({})
- }
- });
- const emit = defineEmits(["success"]);
- const refs = useRefs();
- </script>
|