mirror of
https://github.com/BluemediaDev/fancy-gatus.git
synced 2025-06-07 16:43:15 +02:00
Initial commit of code
This commit is contained in:
parent
d27b0f7ea2
commit
ba484d3d9a
8 changed files with 8792 additions and 0 deletions
21
src/App.vue
Normal file
21
src/App.vue
Normal file
|
@ -0,0 +1,21 @@
|
|||
<template>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
color: #2c3e50;
|
||||
}
|
||||
</style>
|
4
src/main.js
Normal file
4
src/main.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
|
||||
createApp(App).mount('#app')
|
Loading…
Add table
Add a link
Reference in a new issue