index.vue 302 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <section class="container">
  3. </section>
  4. </template>
  5. <script>
  6. import axios from 'axios'
  7. export default {
  8. data (){
  9. return {
  10. }
  11. },
  12. components: {
  13. },
  14. head () {
  15. return {
  16. }
  17. },
  18. async asyncData({params,store}){
  19. }
  20. }
  21. </script>
  22. <style scoped>
  23. </style>