-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
15,750 additions
and
1 deletion.
There are no files selected for viewing
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { defineNuxtConfig } from '@nuxt/bridge' | ||
|
||
export default defineNuxtConfig({ | ||
head: { | ||
title: 'Nuxt.js SVG Sprite Module', | ||
meta: [ | ||
{ charset: 'utf-8' }, | ||
{ name: 'viewport', content: 'width=device-width, initial-scale=1' } | ||
] | ||
}, | ||
modules: [ | ||
'../../src' | ||
] | ||
}) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<template> | ||
<div> | ||
<div> | ||
<svg-icon name="nuxtjs" title="Nuxt.js" :desc="aboutNuxt" width="150px" height="150px" /> | ||
</div> | ||
<div> | ||
<svg-icon name="dreams/zantagle-moon" title="Zantagle Moon" width="150px" height="150px" /> | ||
<svg-icon name="dreams/Nursery_Unicorn_7946" title="Nursery Unicorn" width="150px" height="150px" /> | ||
<svg-icon name="dreams/Beautiful_Little_Girl_7881" title="Beautiful Little Girl" width="150px" height="150px" /> | ||
</div> | ||
<div> | ||
<svg-icon name="love/Bee Mine" title="Bee Mine" width="150px" height="150px" /> | ||
<svg-icon name="love/Hugs And Kisses" title="Hugs And Kisses" width="150px" height="150px" /> | ||
<svg-icon name="love/Love" title="Love" width="150px" height="150px" /> | ||
</div> | ||
<div class="copyright"> | ||
photos by <a href="https://lovesvg.com" rel="noopener" target="_blank"> | ||
lovesvg | ||
</a> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const aboutNuxt = 'Nuxt.js presets all the configuration needed to make your development of a Vue.js application enjoyable.' | ||
</script> | ||
|
||
<style> | ||
body { | ||
text-align: center; | ||
} | ||
.copyright { | ||
margin-top: 25px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES2018", | ||
"module": "ESNext", | ||
"moduleResolution": "Node", | ||
"lib": [ | ||
"ESNext", | ||
"ESNext.AsyncIterable", | ||
"DOM" | ||
], | ||
"esModuleInterop": true, | ||
"allowJs": true, | ||
"sourceMap": true, | ||
"strict": true, | ||
"noEmit": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
"~/*": [ | ||
"./*" | ||
], | ||
"@/*": [ | ||
"./*" | ||
] | ||
}, | ||
"types": [ | ||
"@types/node", | ||
"@nuxt/types", | ||
"../../src/types/global" | ||
] | ||
}, | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |
95 changes: 95 additions & 0 deletions
95
examples/v2/assets/sprite/svg/dreams/Beautiful_Little_Girl_7881.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15,107 changes: 15,107 additions & 0 deletions
15,107
examples/v2/assets/sprite/svg/dreams/Nursery_Unicorn_7946.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.