snapshotManage.vue 229 B

1234567891011
  1. <!-- pages/snapshot/snapshotManage.vue -->
  2. <template>
  3. <snapshot-list mode="manage" />
  4. </template>
  5. <script>
  6. import snapshotList from './components/snapshotList.vue';
  7. export default {
  8. components: { snapshotList }
  9. };
  10. </script>