index.vue 383 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="container">
  3. <navBar title="售后" :back="false" color="white" background="green" />
  4. </view>
  5. </template>
  6. <script>
  7. // import navBar from '@/components/navBar/index.vue'
  8. export default {
  9. // components: {
  10. // navBar
  11. // },
  12. data() {
  13. return {
  14. }
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. @import "./index.scss";
  22. </style>