PHP Classes

File: resources/js/components/ShopComponent.vue

Recommend this page to a friend!
  Classes of Edward Paul   Flexible PHP Coupon System   resources/js/components/ShopComponent.vue   Download  
File: resources/js/components/ShopComponent.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Flexible PHP Coupon System
E-commerce system that supports discount coupons
Author: By
Last change:
Date: 3 years ago
Size: 802 bytes
 

Contents

Class file image Download
<template> <div> <message></message> <top-bar></top-bar> <div class="container"> <div class="row"> <div class="col-sm-3"> <mini-cart></mini-cart> </div> <div class="col-sm-9"> <products></products> </div> </div> </div> </div> </template> <script> import TopBar from "./Layouts/TopBar"; import MiniCart from "./Shop/MiniCart"; import Products from "./Shop/Products"; import Message from "./Layouts/Message"; export default { name: "ShopComponent", components:{ Message, Products, MiniCart, TopBar } } </script> <style scoped> </style>