mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-02-11 13:10:26 +08:00
39 lines
703 B
Vue
39 lines
703 B
Vue
<template>
|
|
<div
|
|
ref="doc"
|
|
class="n-doc"
|
|
>
|
|
<div class="n-doc-header">
|
|
<n-gradient-text :font-size="20">
|
|
Tooltip
|
|
</n-gradient-text>
|
|
</div>
|
|
<div class="n-doc-body">
|
|
<basic-usage />
|
|
<trigger />
|
|
<event />
|
|
<placement />
|
|
<fixWidth />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import basicUsage from './basicUsage.demo.vue'
|
|
import trigger from './trigger.demo.vue'
|
|
import event from './event.demo.vue'
|
|
import placement from './placement.demo.vue'
|
|
import fixWidth from './fixWidth.demo'
|
|
|
|
export default {
|
|
components: { basicUsage, trigger, event, placement, fixWidth },
|
|
data () {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|