| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <div>
- <edit :locations="locations"></edit>
- </div>
- </template>
- <script>
- import { mapState } from "vuex";
- import edit from "@/components/topics/edit";
- import qs from "qs";
- export default {
- // async asyncData({ $axios, params }) {
- // let res = await $axios.$get(`/api/vip/getList`)
- // console.log('init', res)
- // },
- head: {
- title: "发布文章-技术圈"
- },
- components: {
- edit
- },
- data() {
- return {
- locations: [
- {
- url: "/",
- title: "技术圈"
- },
- {
- url: "/topics/create",
- title: "发布文章"
- }
- ]
- };
- },
- computed: {},
- mounted() {},
- methods: {}
- };
- </script>
- <style>
- </style>
|