Logo white

other / mew-iview

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mew-iview
  • examples
  • components
  • tableExpand.vue
  • -
    718e773f
    刘荣 authored
    2017-06-08 08:53:00 +0800  
    Browse Code »
tableExpand.vue 316 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template>
    <div>{{ name }}</div>
</template>
<script>
    export default {
        props: {
            name: String
        },
        created () {
            console.log(this.name + ': 被创建');
        },
        destroyed () {
            console.log(this.name + ': 被销毁');
        }
    }
</script>