index.vue 278 B

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