@nuxt/ui-pro
Version:
Ship beautiful web applications at the speed of light with Nuxt UI Pro.
12 lines (9 loc) • 306 B
text/typescript
import { h } from 'vue'
import ContentToc from '../content/ContentToc.vue'
/**
* @deprecated use `ContentToc` instead
*/
export default (_: any, context: any) => {
console.warn('[@nuxt/ui-pro] `DocsToc` is deprecated, use `ContentToc` instead.')
return h(ContentToc, context.attrs, context.slots)
}