creatingSituations.vue 464 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view>
  3. <lxh-steps :options="options" :active="active"></lxh-steps>
  4. </view>
  5. </template>
  6. <script>
  7. import theme from "./components/theme.vue";
  8. export default {
  9. data() {
  10. return {
  11. options: [
  12. {title: '主题', component: theme},
  13. {title: '条件'},
  14. {title: '查核组'},
  15. {title: '地图'},
  16. {title: '计划'},
  17. {title: '配置'},
  18. ],
  19. active: 0
  20. }
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>