We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89e193 commit f738cb1Copy full SHA for f738cb1
examples/shopping-cart/components/App.vue
@@ -3,17 +3,17 @@
3
<h1>Shopping Cart Example</h1>
4
<hr>
5
<h2>Products</h2>
6
- <product-list></product-list>
+ <ProductList/>
7
8
- <cart></cart>
+ <ShoppingCart/>
9
</div>
10
</template>
11
12
<script>
13
import ProductList from './ProductList.vue'
14
-import Cart from './Cart.vue'
+import ShoppingCart from './ShoppingCart.vue'
15
16
export default {
17
- components: { ProductList, Cart }
+ components: { ProductList, ShoppingCart }
18
}
19
</script>
examples/shopping-cart/components/Cart.vue renamed to examples/shopping-cart/components/ShoppingCart.vue
0 commit comments