mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-06 12:17:13 +08:00
22 lines
367 B
Vue
22 lines
367 B
Vue
<template>
|
|
<div ref="doc" class="n-doc">
|
|
<div class="n-doc-header">
|
|
<n-gradient-text :font-size="20">
|
|
BackTopDebug
|
|
</n-gradient-text>
|
|
</div>
|
|
<div class="n-doc-body" style="height: 2400px" />
|
|
<n-back-top />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
components: {},
|
|
data () {
|
|
return {}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|