[mod] sites

This commit is contained in:
Andy Bunce 2022-04-13 21:51:42 +01:00
parent 0a51710752
commit 16785767fa
7 changed files with 77 additions and 1 deletions

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

Before After
Before After

View file

@ -0,0 +1,27 @@
// app
var app = new Vue({
el: '#app',
vuetify: new Vuetify(),
data: {
message: 'Hello Vue!',
links: null,
hits:0,
loaded: null,
target: "caddy",
targets: ["srv","top","new"]
},
methods:{
load() {
this.loaded = new Date()
this.hits += 1
fetch("links.json")
.then(response => response.json())
.then(data => (this.links = data));
}
},
mounted () {
this.load()
}
});

View file

@ -0,0 +1,14 @@
[
{"href": "http://n2-plus.local:19999/", "text": "netdata", "port": "19999"},
{"href": "http://n2-plus.local:9000/", "text": "portainer", "port": "9000"},
{"href": "http://n2-plus.local:9981/", "text": "tvheadend", "port": "9981"},
{"href": "http://n2-plus.local:8088/", "text": "tiddly", "port": "8088"},
{"href": "http://n2-plus.local:8002/", "text": "piwigo", "port": "8002"},
{"href": "http://n2-plus.local:3030/", "text": "fuseki", "port": "3030"},
{"href": "http://n2-plus.local:8002/", "text": "portainer", "port": "8002"},
{"href": "http://n2-plus.local:8443/", "text": "code-server", "port": "8443"},
{"href": "http://n2-plus.local:8444/", "text": "code-server4", "port": "8444"},
{"href": "http://n2-plus.local:8300/", "text": "gitea", "port": "8300"},
{"href": "http://n2-plus.local", "text": "caddy", "port": "80"},
{"href": "http://fish.local", "text": "fish", "port": ""}
]