12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="subPage">
- 1
- </div>
- </template>
-
- <script>
- import tableSearch from '@/components/tableSearch/index'
-
- export default {
- name: '',
- data () {
- return {
- }
- },
- components: {
- tableSearch,
- },
- mounted () {
- this.$nextTick(function () {
- })
- },
- methods: {
- }
- }
- </script>
-
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style lang="scss" scoped>
- @import "page.scss";
- </style>
|