Files
newfreeplanet_OLD/src/views/user/myfriends/myfriends.vue

43 lines
1016 B
Vue
Raw Normal View History

2022-01-05 19:11:47 +01:00
<template>
<div class="">
<CMyFriends
v-model="filter"
:finder="true"
>
2022-01-12 00:38:31 +01:00
<CGridTableRec
prop_mytable="users"
prop_mytitle=""
:prop_mycolumns="colmyUserPeople"
prop_colkey="_id"
col_title="username"
:vertical="-1"
2022-01-12 00:38:31 +01:00
nodataLabel=" "
:prop_search="true"
hint="Username da trovare"
:finder="true"
2022-01-23 23:25:19 +01:00
:choose_visutype="true"
2022-01-12 00:38:31 +01:00
:finder_noNull="true"
:options="shared_consts.OPTIONS_SEARCH_ONLY_FULL_WORDS"
:butt_modif_new="false"
noresultLabel="Username non trovato"
:arrfilters="arrfilterand"
:filtercustom="filtercustom"
:prop_searchList="searchList"
:showType="costanti.SHOW_USERINFO"
keyMain=""
:showCol="false"
2022-01-12 00:38:31 +01:00
:extraparams="extraparams()">
2022-01-05 19:11:47 +01:00
2022-01-12 00:38:31 +01:00
</CGridTableRec>
</CMyFriends>
2022-01-05 19:11:47 +01:00
</div>
</template>
<script lang="ts" src="./myfriends.ts">
</script>
<style lang="scss" scoped>
@import './myfriends.scss';
</style>