MyInStoreForm.vue 218 B

12345678910111213141516
  1. <template>
  2. <InStoreForm :filter="-1"/>
  3. </template>
  4. <script>
  5. import InStoreForm from './InStoreForm'
  6. export default {
  7. name: 'MyInStoreForm',
  8. components: {
  9. InStoreForm
  10. }
  11. }
  12. </script>
  13. <style scoped>
  14. </style>