| 12345678910111213141516171819202122232425262728293031 |
- <template id="operation-center-style">
- <div>
-
- </div>
- </template>
- <script>
- Vue.component('operation-center-style', {
- name: "operation-center-style",
- mixins: [basicMixins],
- template: '#operation-center-style',
- props: {
- activeItem: {
- type: Object,
- default () {
- return {}
- }
- }
- },
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- });
- </script>
- <style>
-
- </style>
|