mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Template page updates
This commit is contained in:
parent
ccd26159fb
commit
59c6d2e76f
42 changed files with 6152 additions and 20 deletions
17
doc/templates/FreyaSeparator.vue
vendored
Normal file
17
doc/templates/FreyaSeparator.vue
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
<template>
|
||||
<TemplateSeparator>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="49" viewBox="0 0 48 49" fill="none">
|
||||
<path d="M14 12H21.1333V16.5881L34.2105 14V20L21.1333 22.5881V24.5881L34.2105 22V28L21.1333 30.5881V36H14V12Z" :fill="fillColor" />
|
||||
</svg>
|
||||
</TemplateSeparator>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
computed: {
|
||||
fillColor() {
|
||||
return this.$appState.darkTheme ? 'var(--p-surface-0)' : 'var(--p-surface-900)';
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue