Skip to content
  • This project
    • Loading...
  • Sign in

web-framework-temp / vue-cli3-vt-template-master

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • vue-cli3-vt-template-master
  • src
  • pages
  • lottery
  • lottery.js
  • simon's avatar
    默认提交 · 743d837e
    743d837e
    simon committed 2021-02-18 11:02:35 +0800
lottery.js 394 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import api from '../../api/api'
import {
    httpGet,
    httpPost
} from '../../api/fetch-api.js'

export default {
    data() {
        return {
            key: 'value'
        }
    },
    components: {},
    methods: {
        initData() {},
        toIndex() {
            this.$router.push({
                path: "/"
            })
        },
    },
    mounted() {},
    created() {}
}