App.vue 222 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. </script>
  3. <template>
  4. <router-view></router-view>
  5. </template>
  6. <style lang="less">
  7. div{
  8. box-sizing: border-box;
  9. }
  10. #app{
  11. height: 100%;
  12. }
  13. .el-message{
  14. min-width: 250px !important;
  15. }
  16. </style>