1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view>
- <lxh-steps :options="options" :active="active"></lxh-steps>
- </view>
- </template>
- <script>
- import theme from "./components/theme.vue";
-
- export default {
- data() {
- return {
- options: [
- {title: '主题', component: theme},
- {title: '条件'},
- {title: '查核组'},
- {title: '地图'},
- {title: '计划'},
- {title: '配置'},
- ],
- active: 0
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|