iview/examples/components/test.vue

16 lines
279 B
Vue
Raw Normal View History

<template>
2017-06-09 16:44:24 +08:00
<div>{{ row.name }}</div>
</template>
<script>
export default {
2017-06-09 16:44:24 +08:00
props: {
row: Object
},
mounted () {
2017-06-20 16:47:37 +08:00
// console.log(1);
2017-06-09 16:44:24 +08:00
},
beforeDestroy () {
2017-06-20 16:47:37 +08:00
// console.log(2);
2017-06-09 16:44:24 +08:00
}
}
</script>