_id.vue 240 B

1234567891011121314
  1. <template>
  2. <div class="mobile-content">
  3. <say-price></say-price>
  4. </div>
  5. </template>
  6. <script>
  7. import {SayPrice} from '~components/mobile'
  8. export default {
  9. layout: 'mobile',
  10. components: {
  11. SayPrice
  12. }
  13. }
  14. </script>