Skip to content

Instantly share code, notes, and snippets.

@artrayd
Last active January 15, 2022 09:44
Show Gist options
  • Save artrayd/e618b6a51eb75b12bc4d05a39d2c1107 to your computer and use it in GitHub Desktop.
Save artrayd/e618b6a51eb75b12bc4d05a39d2c1107 to your computer and use it in GitHub Desktop.
Register SVG Icon component
<template>
<h1>SVG Icon Font</h1>
<p>You can easily customize these icons with CSS only</p>
<iconLove />
</template>
<script>
import svgLove from "./components/icon/Love.vue";
export default {
name: "App",
components: {
iconLove,
},
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment