[mod]
This commit is contained in:
parent
366bdef7b8
commit
a567168ab4
0
caddy/site/links/app.css
Normal file
0
caddy/site/links/app.css
Normal file
@ -8,6 +8,7 @@
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
|
||||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@mdi/font@4.x/css/materialdesignicons.min.css" >
|
||||
<link href="https://cdn.jsdelivr.net/npm/vuetify@2.6.x/dist/vuetify.min.css" rel="stylesheet">
|
||||
<link href="app.css" rel="stylesheet">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
|
||||
</head>
|
||||
<body>
|
||||
@ -24,11 +25,11 @@
|
||||
<v-col v-for="item in links">
|
||||
<v-card width="10em">
|
||||
<v-card-title class="text-caption">
|
||||
<a :href="item.href">{{ item.text }}</a>
|
||||
<a :href="item.href" :target="target">{{ item.text }}</a>
|
||||
</v-card-title>
|
||||
<v-card-actions>
|
||||
<v-btn>?</v-btn>
|
||||
<v-btn>X</v-btn>
|
||||
<v-btn>{{ item.port }}</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-col>
|
||||
|
@ -6,7 +6,10 @@ var app = new Vue({
|
||||
message: 'Hello Vue!',
|
||||
links: null,
|
||||
hits:0,
|
||||
loaded: null
|
||||
loaded: null,
|
||||
target: "srv",
|
||||
targets: ["srv","top","new"]
|
||||
|
||||
},
|
||||
|
||||
methods:{
|
||||
|
Loading…
Reference in New Issue
Block a user