DialogAsideRight.vue 336 B

123456789101112131415161718192021
  1. <template>
  2. <div class="dialog-aside-right">
  3. <div>对话右侧边栏</div>
  4. </div>
  5. </template>
  6. <script setup></script>
  7. <style lang="css" scoped>
  8. .dialog-aside-right {
  9. /* margin-top: 30px;
  10. margin-bottom: 30px;
  11. text-align: center; */
  12. /* font-size: 32px;
  13. font-weight: bold; */
  14. color: var(--color-text-1);
  15. }
  16. </style>