Merge pull request #240 from edbond88/patch-1

Update Vue example in README.md
This commit is contained in:
Tobias Fried
2023-09-18 22:36:31 -06:00
committed by GitHub

View File

@@ -67,14 +67,14 @@ ReactDOM.render(<App />, document.getElementById("root"));
```html
<template>
<div>
<ph-horse />
<ph-heart :size="32" color="hotpink" weight="fill" />
<ph-cube />
<PhHorse />
<PhHeart :size="32" color="hotpink" weight="fill" />
<PhCube />
</div>
</template>
<script>
import { PhHorse, PhHeart, PhCube } from "phosphor-vue";
import { PhHorse, PhHeart, PhCube } from "@phosphor-icons/vue";
export default {
name: "App",
components: {