index.vue 282 B

1234567891011121314151617181920
  1. <template>
  2. <categoryAllocation/>
  3. </template>
  4. <script>
  5. import categoryAllocation from './pages/categoryAllocation.vue'
  6. export default {
  7. components: { categoryAllocation },
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. </style>