primevue-mirror/doc/tabview/ImportDoc.vue

21 lines
499 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
2024-04-29 09:18:36 +00:00
<div class="doc-notification">TabView is deprecated, use <NuxtLink to="/tabs" class="doc-link">Tabs</NuxtLink> instead.</div>
2023-02-28 08:29:30 +00:00
<DocSectionText v-bind="$attrs" />
2024-01-30 08:16:35 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
import TabView from 'primevue/tabview';
import TabPanel from 'primevue/tabpanel';
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>