mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 03:09:24 +01:00
Add basics section to vue pages
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<script setup>
|
||||
import { Beer } from "lucide-vue-next";
|
||||
import './icon.css'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Beer class="my-beer-icon" />
|
||||
</template>
|
||||
@@ -0,0 +1,20 @@
|
||||
import App from './App.vue?raw'
|
||||
import styles from '../styles.css?raw'
|
||||
import IconCss from './icon.css?raw'
|
||||
|
||||
const files = {
|
||||
'src/icon.css': {
|
||||
code: IconCss,
|
||||
readOnly: false,
|
||||
active: true,
|
||||
},
|
||||
'src/App.vue': {
|
||||
code: App,
|
||||
},
|
||||
'src/styles.css': {
|
||||
code: styles,
|
||||
hidden: true
|
||||
},
|
||||
}
|
||||
|
||||
export default files
|
||||
@@ -0,0 +1,5 @@
|
||||
.my-beer-icon {
|
||||
/* Change this! */
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
Reference in New Issue
Block a user