index.vue 315 B

12345678910111213141516171819202122232425262728293031323334
  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({ store, params }) {
  16. },
  17. components: {
  18. },
  19. methods: {
  20. },
  21. };
  22. </script>
  23. <style scoped>
  24. </style>