index.vue 275 B

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