Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
jangaraj committed Jan 3, 2024
1 parent b838879 commit 0922edc
Show file tree
Hide file tree
Showing 7 changed files with 164 additions and 149 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Grafana Debugger

TODO
TODO
15 changes: 15 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
"@mdi/font": "7.0.96",
"core-js": "^3.29.0",
"md-editor-v3": "^4.10.0",
"rison-node": "^2.1.1",
"roboto-fontface": "*",
"vue": "^3.3.0",
"vue-cookies": "^1.8.3",
"vue-gtag": "^2.0.1",
"vue-router": "^4.0.0",
"vuetify": "^3.4.9"
},
Expand Down
8 changes: 4 additions & 4 deletions src/layouts/default/Default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
>

<div class="text-no-wrap ml-2 float-left">
Maintained by:&nbsp;<a href="https://monitoringartist.com" _target="_blank">Monitoring Artist</a>
Crafted with <v-icon icon="mdi-cards-heart" color="red"></v-icon> by:&nbsp;<a class="text-decoration-none" href="https://monitoringartist.com" _target="_blank">Monitoring Artist</a>
</div>
<div class="ml-2 float-left">
|
</div>
<div class="text-no-wrap ml-2 float-left">
Star:&nbsp;<a target="_blank" href="https://github.com/jangaraj/gv">GitHub repository</a>
<v-icon icon="mdi-github"></v-icon>&nbsp;<a class="text-decoration-none" target="_blank" href="https://github.com/monitoringartist/grafana-debugger">GitHub repository</a>
</div>
<div class="ml-2 float-left">
|
</div>
<div class="text-no-wrap ml-2 float-left">
Feedback:&nbsp;<a target="_blank" href="https://github.com/jangaraj/gv/issues/new">New GitHub issue</a>
<v-icon icon="mdi-scale-balance"></v-icon>&nbsp;<a class="text-decoration-none" target="_blank" href="todo">Legal</a>
</div>

</v-card>
</v-footer>
</v-app>
Expand Down
15 changes: 13 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,20 @@ const app = createApp(App)

registerPlugins(app)

app.mount('#app')

import { VueCookies } from 'vue-cookies'
app.use(VueCookies)

import VueGtag from 'vue-gtag'
import router from './router'
app.use(
VueGtag,
{
config: { id: 'G-KY34G7DB1G' },
appName: 'Grafan Debugger',
pageTrackerScreenviewEnabled: true,
},
router
)

app.mount('#app')
app.config.globalProperties.window = window
3 changes: 0 additions & 3 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ const routes = [
{
path: '',
name: 'Introduction',
// route level code-splitting
// this generates a separate chunk (Home-[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('@/views/Main.vue'),
}
],
Expand Down
Loading

0 comments on commit 0922edc

Please sign in to comment.