WebAgent/src/components/GhostButton.vue

13 lines
216 B
Vue
Raw Normal View History

2025-12-17 16:49:16 +08:00
<template>
<van-button size="small" plain type="primary">
<slot />
</van-button>
</template>
<style scoped>
.van-button {
--van-button-border-width: 0;
--van-button-plain-background: opacity;
}
</style>