123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="toast-wrap">
- <div class="toast">
- {{ title }}
- </div>
- </div>
- </template>
- <script lang="ts">
- export default {
- name: 'Toast',
- props: {
- title: {
- type: String,
- default: '我是toast'
- }
- },
- setup() {
- return {}
- }
- }
- </script>
- <style lang="less" scoped>
- .toast-wrap {
- z-index: 1000;
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- background: rgba(0,0,0,0.5);
- }
- .toast {
- max-width: 6rem;
- color: #ffffff;
- font-size: 14px;
- text-align: center;
- border-radius: 5px;
- padding: 10px;
- background: rgba(0, 0, 0, 0.8);
- }
- </style>
|