Create component (#34)

This commit is contained in:
Adrian O.V
2023-04-02 01:53:29 -04:00
committed by GitHub
parent d238b0b9f2
commit 6bdea219bf
4 changed files with 79 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ export default {
{ text: 'Toggle', link: '/components/toggle' },
{ text: 'Promotion', link: '/components/promotion' },
{ text: 'Markdown', link: '/components/markdown' },
{ text: 'Copy Code', link: '/components/copy-code' },
],
},
],

View File

@@ -0,0 +1,13 @@
# Copy Code
<DemoContainer>
<CopyCode
text="urmom"
/>
</DemoContainer>
```vue
<CopyCode
text="urmom"
/>
```