Blame view

src/components/demo-item/demo-item.js 287 Bytes
simon committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import api from '@/api/api'
import {
    httpGet,
    httpPost
} from '@/api/fetch-api.js'


export default {
    data() {
        return {
            key: 'value'
        }
    },
    components: {},
    methods: {
        initData() {}
    },
    mounted() {},
    created() {
    }
}