add progresspinner demo

This commit is contained in:
ATAKAN TEPE 2023-08-03 17:45:24 +03:00
parent aa910cee0a
commit af6ad719a4
4 changed files with 63 additions and 9 deletions

View 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>