style.php 580 B

12345678910111213141516171819202122232425262728293031
  1. <template id="operation-center-style">
  2. <div>
  3. </div>
  4. </template>
  5. <script>
  6. Vue.component('operation-center-style', {
  7. name: "operation-center-style",
  8. mixins: [basicMixins],
  9. template: '#operation-center-style',
  10. props: {
  11. activeItem: {
  12. type: Object,
  13. default () {
  14. return {}
  15. }
  16. }
  17. },
  18. data() {
  19. return {
  20. }
  21. },
  22. methods: {
  23. }
  24. });
  25. </script>
  26. <style>
  27. </style>