diff --git a/apps/showcase/doc/paginator/HeadlessDoc.vue b/apps/showcase/doc/paginator/HeadlessDoc.vue new file mode 100644 index 000000000..523ac4148 --- /dev/null +++ b/apps/showcase/doc/paginator/HeadlessDoc.vue @@ -0,0 +1,75 @@ + + + Headless mode is enabled by defining a container slot that lets you implement entire UI instead of the default elements. + + + + + + + Showing {{ first }} to {{ last }} of {{ totalRecords }} + + + + + + + + + diff --git a/apps/showcase/nuxt.config.js b/apps/showcase/nuxt.config.js index 2e804a071..765194b74 100644 --- a/apps/showcase/nuxt.config.js +++ b/apps/showcase/nuxt.config.js @@ -58,6 +58,9 @@ export default defineNuxtConfig({ app: { baseURL: baseUrl, head: { + htmlAttrs: { + dir: 'rtl' + }, title: 'PrimeVue - Vue UI Component Library', meta: [ { charset: 'utf-8' },
Headless mode is enabled by defining a container slot that lets you implement entire UI instead of the default elements.