mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
14 lines
194 B
Vue
14 lines
194 B
Vue
<template>
|
|
<el-page-header content="Detail" @back="goBack" />
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
export default {
|
|
methods: {
|
|
goBack() {
|
|
console.log('go back')
|
|
},
|
|
},
|
|
}
|
|
</script>
|