App.vue 246 B

123456789101112131415
  1. <script setup>
  2. import { RouterView } from 'vue-router'
  3. </script>
  4. <template>
  5. <v-app>
  6. <RouterView />
  7. </v-app>
  8. </template>
  9. <style scoped>
  10. /* :deep(.el-date-editor.el-input, .el-date-editor.el-input__wrapper) {
  11. width: 100%;
  12. } */
  13. </style>