[SOLVED]Checkboxes Group With media list view

Can Framework7-Vue use Checkboxes Group With media list view? I’ve tried in framework7 v1, it seems unavailable.

<f7-list id="" form contacts media-list>
<f7-list-group v-for="(group, key) in contactsList">
	<f7-list-item :title="key" group-title></f7-list-item>
	<f7-list-item checkbox
				  v-for="item in group"
				  :key="item.id"
				  @click="gathering(item.id)"
				  name="contactsToDel"
				  :title="item.name"
				  :subtitle="item.phone">
	</f7-list-item>
</f7-list-group>

Is this combination available in framework-vue v1? If not, is it available in v2? If so, how can I achieve it. Thanks a lot.

In v2 it works https://github.com/framework7io/framework7-vue/blob/master/kitchen-sink/src/pages/checkbox.vue