mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-09 09:57:19 +08:00
29 lines
436 B
Vue
29 lines
436 B
Vue
<template>
|
|
<footer class="page-edit">
|
|
<a
|
|
v-if="editLink"
|
|
:href="editLink"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{{ editLinkText }}
|
|
<OutboundLink />
|
|
</a>
|
|
</footer>
|
|
</template>
|
|
|
|
<script src="./PageEdit"></script>
|
|
|
|
<style>
|
|
.page-edit {
|
|
padding-top: 1rem;
|
|
padding-bottom: 1rem;
|
|
overflow: auto;
|
|
}
|
|
|
|
.page-edit a {
|
|
color: var(--text-color);
|
|
margin-right: 0.25rem;
|
|
}
|
|
</style>
|