App.vue 337 B

12345678910111213141516171819
  1. <template>
  2. <div id="app">
  3. <h1>Shopping Cart Example</h1>
  4. <hr>
  5. <h2>Products</h2>
  6. <ProductList/>
  7. <hr>
  8. <ShoppingCart/>
  9. </div>
  10. </template>
  11. <script>
  12. import ProductList from './ProductList.vue'
  13. import ShoppingCart from './ShoppingCart.vue'
  14. export default {
  15. components: { ProductList, ShoppingCart }
  16. }
  17. </script>