家政小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.vue 539B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div id="main" class="app-main">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {
  10. theme: this.$store.state.app.themeColor
  11. };
  12. },
  13. mounted () {
  14. },
  15. beforeDestroy () {
  16. },
  17. methods: {
  18. }
  19. };
  20. </script>
  21. <style>
  22. html,body{
  23. width: 100%;
  24. height: 100%;
  25. background: #f0f0f0;
  26. overflow: hidden;
  27. }
  28. .app-main{
  29. width: 100%;
  30. height: 100%;
  31. }
  32. </style>