index.vue 394 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <icon-svg
  3. :name="config.icon"
  4. class="page-opt-list-icon icon-box"
  5. />
  6. </template>
  7. <script>
  8. import IconSvg from 'packages/SvgIcon'
  9. export default {
  10. name: 'Svgs',
  11. components: {
  12. IconSvg
  13. },
  14. props: {
  15. config: {
  16. type: Object,
  17. default: () => ({})
  18. }
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. .icon-box {
  24. width: 100%;
  25. height: 100%;
  26. }
  27. </style>