We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec6c25 commit 425d75dCopy full SHA for 425d75d
src/app/page/main/Options.vue
@@ -1,7 +1,7 @@
1
<template>
2
<div>
3
<v-layout>
4
- <v-flex xs12 sm6 offset-sm3>
+ <v-flex xs12 sm8 offset-sm2>
5
6
<v-card>
7
<v-card-text>
src/app/page/main/Search.vue
@@ -40,10 +40,10 @@
40
<v-card v-if="q && items && items.length">
41
<v-list>
42
<v-list-tile
43
- v-for="(item, index) in items" :key="index" :color="item.color"
+ v-for="(item, index) in items" :key="index"
44
:to="{name: 'detailList', query: item.value}"
45
>
46
- <v-list-tile-content>
+ <v-list-tile-content :class="item.color + '--text'">
47
<v-list-tile-title v-text="item.title"></v-list-tile-title>
48
<v-list-tile-sub-title v-text="item.subtitle"></v-list-tile-sub-title>
49
</v-list-tile-content>
0 commit comments