diff --git a/src/Models/data.js b/src/Models/data.js index 0b0dd2a..cc3f051 100644 --- a/src/Models/data.js +++ b/src/Models/data.js @@ -16,6 +16,7 @@ export default [ { name: 'Article card' }, { name: 'Article card with image' }, { name: 'Product card' }, + { name: 'Product card with price' }, { name: 'Product card with evaluation' }, { name: 'Testimonial card' }, { name: 'User card' }, diff --git a/src/components/Master.vue b/src/components/Master.vue index 6bb3f0b..c83917e 100644 --- a/src/components/Master.vue +++ b/src/components/Master.vue @@ -52,6 +52,7 @@ import ArticleCard from "./UI/Cards/ArticleCard"; import ArticleCardWithImage from "./UI/Cards/ArticleCardWithImage"; import ProductCard from "./UI/Cards/ProductCard"; + import ProductCardWithPrice from "./UI/Cards/ProductCardWithPrice"; import ProductCardWithEvaluation from "./UI/Cards/ProductCardWithEvaluation"; import TestimonialCard from "./UI/Cards/TestimonialCard"; import UserCard from "./UI/Cards/UserCard"; @@ -90,6 +91,7 @@ ArticleCard, ArticleCardWithImage, ProductCard, + ProductCardWithPrice, ProductCardWithEvaluation, TestimonialCard, UserCard, diff --git a/src/components/UI/Cards/ProductCardWithPrice.vue b/src/components/UI/Cards/ProductCardWithPrice.vue new file mode 100644 index 0000000..91a3fed --- /dev/null +++ b/src/components/UI/Cards/ProductCardWithPrice.vue @@ -0,0 +1,29 @@ + + +