| 12345678910111213141516171819202122232425 |
- <template>
- <view>
- <cart-container></cart-container>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style>
- /* Empty style as content is in the component */
- </style>
|