ContactDialog.vue 2.07 KB
<template>
  <v-dialog persistent v-model="dialogStore.dialog" width="auto">
    <v-toolbar color="blue-darken-1" title="Contact Us"></v-toolbar>
    <v-card>
      <v-card-text class="py-2">
        <span
          class="text-grey-darken-1 font-weight-medium tw-w-[100px] tw-inline-block tw-text-right"
          >Email:
        </span>
        <span class="text-grey-darken-4 font-weight-medium"> contact@canrd.com </span>
      </v-card-text>
      <v-card-text class="py-2">
        <span
          class="text-grey-darken-1 font-weight-medium tw-w-[100px] tw-inline-block tw-text-right"
        >
          QQ:
        </span>
        <span class="text-grey-darken-4 font-weight-medium"> 3003597584 / 2902385824 </span>
      </v-card-text>
      <v-card-text class="py-2">
        <span
          class="text-grey-darken-1 font-weight-medium tw-w-[100px] tw-inline-block tw-text-right"
        >
          Phone:
        </span>
        <span class="text-grey-darken-4 font-weight-medium"> +86 19867737979 </span>
      </v-card-text>
      <v-card-text class="py-2">
        <span
          class="text-grey-darken-1 font-weight-medium tw-w-[100px] tw-inline-block tw-text-right"
        >
          Telegram:
        </span>
        <span class="text-grey-darken-4 font-weight-medium"> contactcanrd </span>
      </v-card-text>
      <v-card-text class="py-2">
        <span
          class="text-grey-darken-1 font-weight-medium tw-w-[100px] tw-inline-block tw-text-right"
        >
          Wechat:
        </span>
        <span class="text-grey-darken-4 font-weight-medium"> contactcanrd </span>
      </v-card-text>
      <p>
        <img src="/wechat.jpg" alt="" width="140" class="tw-m-auto tw-block" />
      </p>
      <v-card-actions>
        <v-btn color="blue-darken-1" block @click="dialogStore.updateDialog(false)">Close </v-btn>
      </v-card-actions>
    </v-card>
  </v-dialog>
</template>

<script setup lang="ts">
import { useDialogStore } from '@/stores/dialog'
const dialogStore = useDialogStore()
defineProps<{
  dialog: boolean
}>()
</script>

<style lang="less" scoped></style>