@tomoeed/vue-dialog
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

vue-dialog

一个 vue3 对话框组件

安装

npm install @tomoeed/vue-dialog --save

基础用法

<template>
<Dialog v-model="status">
  <Header>Title</Header>
  <Body>...</Body>
</Dialog>
</template>

<script setup>
import { ref } from 'vue';
import { Dialog, Header, Body } from '@tomoeed/vue-dialog';

const status = ref(false);
</script>

组件

License

Apache-2.0

Dependents (0)

Package Sidebar

Install

npm i @tomoeed/vue-dialog

Weekly Downloads

6

Version

1.0.4

License

Apache-2.0

Unpacked Size

372 kB

Total Files

16

Last publish

Collaborators

  • tomoeed