<van-tagtype="primary"v-for="item in historyList":key="item.index"roundsize="medium"color="#ededed"text-color="#333">{{item}}</van-tag>
<van-tagtype="primary"v-for="item in historyList":key="item.index"roundsize="medium"color="#ededed"text-color="#333"@click="clickTag">{{item}}</van-tag>
</div>
</div>
</div>
...
...
@@ -41,7 +41,7 @@ export default class AppRoundList extends Vue{
* @type {boolean}
* @memberof AppSearchHistory
*/
@Prop()publicshowfilter:boolean=false;
@Prop()publicshowfilter!:boolean;
/**
* 快速搜索值变化
...
...
@@ -52,6 +52,7 @@ export default class AppRoundList extends Vue{
*/
publicquickValueChange($event:any){
this.$emit('quickValueChange',$event);
this.searchVal($event);
}
/**
...
...
@@ -153,7 +154,6 @@ export default class AppRoundList extends Vue{