You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
487 B
31 lines
487 B
|
2 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<el-page-header
|
||
|
|
:content="$route.meta.title"
|
||
|
|
style="
|
||
|
|
padding: 1em;
|
||
|
|
font-size: 1em;
|
||
|
|
background: #fff;
|
||
|
|
margin: 1.67em 0;
|
||
|
|
box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
|
||
|
|
border-radius: 5px;
|
||
|
|
"
|
||
|
|
@back="$router.back()"
|
||
|
|
>
|
||
|
|
</el-page-header>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
methods: {},
|
||
|
|
computed: {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
</style>
|