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
  • components
  • demo-item
  • demo-item.js
  • simon's avatar
    模板更新 · b61611dc
    b61611dc
    simon committed 2023-09-20 19:00:00 +0800
demo-item.js 249 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
export default {
    name: "demo-item",
    props: [],
    data() {
        return {
            key: 'value',
        }
    },
    computed: {},
    methods: {
        onHide() {
            this.$emit('hide');
        },
    },
    mounted() {},
}