my_archives.vue 226 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="main">
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. onLoad(options) {
  8. },
  9. data() {
  10. return {
  11. }
  12. },
  13. methods: {
  14. }
  15. };
  16. </script>
  17. <style scoped lang="scss">
  18. .main {}
  19. </style>