mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
33 lines
456 B
Vue
33 lines
456 B
Vue
|
<template>
|
||
|
<div class="footer">
|
||
|
<n-divider v-if="showDivider" style="margin: 0 0 16px 0;" />
|
||
|
<n-text depth="tertiary">
|
||
|
For Preview Only
|
||
|
</n-text>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
showDivider: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.footer {
|
||
|
font-size: 15px;
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
padding-top: 0;
|
||
|
}
|
||
|
|
||
|
.link {
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
</style>
|