index.vue 274 B

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