_id.vue 305 B

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