svgIcon.vue 275 B

123456789101112131415161718
  1. <template>
  2. <svg class="xxx">
  3. <use xlink:href="@/assets/images/equip/lengganji.svg#notification"></use>
  4. </svg>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. };
  12. </script>
  13. <style lang="less" scoped>
  14. .xxx {
  15. width: 50px;
  16. height: 50px;
  17. }
  18. </style>