OtherMatter.vue 417 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class='other-matter'>
  3. <p>OtherMatter</p>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'OtherMatter',
  9. props: {},
  10. data() {
  11. return {}
  12. },
  13. components: {},
  14. beforeMount() {},
  15. mounted() {},
  16. methods: {},
  17. }
  18. </script>
  19. <style lang='less' scoped>
  20. .other-matter {
  21. width: 100%;
  22. height: calc(100% - 50px);
  23. background-color: #d3d3d3;
  24. }
  25. </style>