mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
add progresspinner demo
This commit is contained in:
parent
aa910cee0a
commit
af6ad719a4
4 changed files with 63 additions and 9 deletions
26
doc/progressspinner/theming/UnstyledDoc.vue
Normal file
26
doc/progressspinner/theming/UnstyledDoc.vue
Normal file
|
@ -0,0 +1,26 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>Theming is implemented with the pass through properties in unstyled mode. Example below demonstrates the built-in Tailwind theme.</p>
|
||||
</DocSectionText>
|
||||
<DocSectionCode :code="code" embedded />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
code: {
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card flex justify-content-center">
|
||||
<ProgressSpinner />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
<\/script>`
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue