Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

27 righe
313 B

  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. data() {
  10. return {}
  11. },
  12. computed: {},
  13. watch: {},
  14. created() {
  15. },
  16. methods: {}
  17. }
  18. </script>
  19. <style lang="scss">
  20. #app {
  21. width: 100%;
  22. height: 100%;
  23. overflow: hidden;
  24. }
  25. </style>