mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +08:00
14 lines
263 B
Vue
14 lines
263 B
Vue
<template>
|
|
<el-page-header @back="goBack">
|
|
<template #content>
|
|
<span class="text-large font-600 mr-3"> Title </span>
|
|
</template>
|
|
</el-page-header>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const goBack = () => {
|
|
console.log('go back')
|
|
}
|
|
</script>
|