index.vue 330 B

123456789101112131415161718192021
  1. <template>
  2. <div class='test'>test</div>
  3. </template>
  4. <script>
  5. import { post } from '@/request/api.js';
  6. export default {
  7. name: 'test',
  8. data () {
  9. return {}
  10. },
  11. onLoad (option) {},
  12. onLaunch () {},
  13. onShow () {},
  14. onHide () {},
  15. methods: {},
  16. computed: {},
  17. watch: {}
  18. }
  19. </script>
  20. <style scoped lang='scss'>
  21. </style>