We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Баг:
Тут нет слота list: https://github.com/framework7io/framework7/blob/master/src/vue/components/list.vue как сказано в документации https://framework7.io/vue/list-view#list-slots
Проблема:
<f7-list> <my-list-item/> </f7-list>
Где <my-list-item> это: <f7-list-item title="..." />
<my-list-item>
<f7-list-item title="..." />
Работать не будет, споткнется здесь https://github.com/framework7io/framework7/blob/master/src/vue/components/list.vue#L245 потому, что indexOf не определен
Вынести <f7-list-item title="..." /> в свой компонент сейчас можно примерно так:
<f7-list> <ul> - обязательно добавить вручную <my-list-item v-if="isLoaded"/> </ul> </f7-list> onMounted: isLoaded = true
The text was updated successfully, but these errors were encountered:
f4b24bc
No branches or pull requests
Баг:
Тут нет слота list: https://github.com/framework7io/framework7/blob/master/src/vue/components/list.vue как сказано в документации https://framework7.io/vue/list-view#list-slots
Проблема:
Где
<my-list-item>
это:<f7-list-item title="..." />
Работать не будет, споткнется здесь https://github.com/framework7io/framework7/blob/master/src/vue/components/list.vue#L245 потому, что indexOf не определен
Вынести
<f7-list-item title="..." />
в свой компонент сейчас можно примерно так:The text was updated successfully, but these errors were encountered: