vant4 使用Toast Dialog等组件没有样式
可在App.vue文件中引入样式
<template>
<router-view />
</template>
<script setup>
// Toast
import "vant/es/toast/style";
// Dialog
import "vant/es/dialog/style";
// Notify
import "vant/es/notify/style";
// ImagePreview
import "vant/es/image-preview/style";
</script>
<style></style>