mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-21 04:50:14 +08:00
33 lines
449 B
Vue
33 lines
449 B
Vue
<template>
|
|
<div class="footer">
|
|
<n-divider v-if="showDivider" style="margin: 0 0 16px 0;" />
|
|
<n-text depth="3">
|
|
Made by Tusimple
|
|
</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>
|