_id.vue 322 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <section class="cotainer">
  3. </section>
  4. </template>
  5. <script>
  6. import axios from "axios";
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. async asyncData({ params, query, store }) {
  12. },
  13. head() {
  14. return {
  15. };
  16. },
  17. mounted() {
  18. },
  19. };
  20. </script>
  21. <style type="text/css" scoped>
  22. </style>