mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Template page updates
This commit is contained in:
parent
8039d3c5fe
commit
dc1b18d7e5
42 changed files with 5925 additions and 20 deletions
37
components/template/Configuration.vue
Normal file
37
components/template/Configuration.vue
Normal file
|
@ -0,0 +1,37 @@
|
|||
<template>
|
||||
<div class="template-configuration-wrapper">
|
||||
<div class="template-configuration">
|
||||
<div class="template-configuration-screen">
|
||||
<div class="template-configuration-screen-top">
|
||||
<div class="template-configuration-screen-top-close template-configuration-screen-top-circle" />
|
||||
<div class="template-configuration-screen-top-minimize template-configuration-screen-top-circle" />
|
||||
<div class="template-configuration-screen-top-zoom template-configuration-screen-top-circle" />
|
||||
</div>
|
||||
<div class="template-configuration-screen-bottom">
|
||||
<p>> npm install <span class="text-gray-500">or yarn</span></p>
|
||||
<p>> npm run dev <span class="text-gray-500">or yarn dev</span></p>
|
||||
<br />
|
||||
<br />
|
||||
<img class="template-configuration-screen-bottom-logo" src="https://primefaces.org/cdn/primevue/images/templates/vue-3d-logo.png" alt="Vue 3D Logo" />
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="template-configuration-title">{{ title }}</h3>
|
||||
<p class="template-configuration-description">{{ description }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
description: {
|
||||
type: String,
|
||||
default: null
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue