12345678910111213141516171819202122232425 |
- <template>
- <div class='other-matter'>
- <p>OtherMatter</p>
- </div>
- </template>
- <script>
- export default {
- name: 'OtherMatter',
- props: {},
- data() {
- return {}
- },
- components: {},
- beforeMount() {},
- mounted() {},
- methods: {},
- }
- </script>
- <style lang='less' scoped>
- .other-matter {
- width: 100%;
- height: calc(100% - 50px);
- background-color: #d3d3d3;
- }
- </style>
|