mirror of https://github.com/wg-easy/wg-easy
24 changed files with 401 additions and 301 deletions
@ -1,5 +1,13 @@ |
|||||
<template> |
<template> |
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor"> |
<svg |
||||
<path fill-rule="evenodd" d="M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z" clip-rule="evenodd" /> |
xmlns="http://www.w3.org/2000/svg" |
||||
|
viewBox="0 0 20 20" |
||||
|
fill="currentColor" |
||||
|
> |
||||
|
<path |
||||
|
fill-rule="evenodd" |
||||
|
d="M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z" |
||||
|
clip-rule="evenodd" |
||||
|
/> |
||||
</svg> |
</svg> |
||||
</template> |
</template> |
||||
|
|||||
@ -1,5 +1,16 @@ |
|||||
<template> |
<template> |
||||
<svg class="w-8" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"> |
<svg |
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" /> |
class="w-8" |
||||
|
xmlns="http://www.w3.org/2000/svg" |
||||
|
fill="none" |
||||
|
viewBox="0 0 24 24" |
||||
|
stroke="currentColor" |
||||
|
> |
||||
|
<path |
||||
|
stroke-linecap="round" |
||||
|
stroke-linejoin="round" |
||||
|
stroke-width="2" |
||||
|
d="M6 18L18 6M6 6l12 12" |
||||
|
/> |
||||
</svg> |
</svg> |
||||
</template> |
</template> |
||||
|
|||||
@ -1,6 +1,6 @@ |
|||||
import './assets/style.css' |
import './assets/style.css'; |
||||
|
|
||||
import { createApp } from 'vue' |
import App from './App.vue'; |
||||
import App from './App.vue' |
import { createApp } from 'vue'; |
||||
|
|
||||
createApp(App).mount('#app') |
createApp(App).mount('#app'); |
||||
|
|||||
Loading…
Reference in new issue