add.vue 446 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="add_wrap">
  3. <view class="container">
  4. 新增
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. clueId: ''
  13. }
  14. },
  15. onLoad(options) {
  16. console.log(options);
  17. this.clueId = options.clueId
  18. }
  19. }
  20. </script>
  21. <style lang="scss">
  22. @import "./styles/index.scss";
  23. </style>