Skip to content
New issue

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

how use pagination #27

Open
ewgenij87snwork opened this issue Sep 3, 2019 · 1 comment
Open

how use pagination #27

ewgenij87snwork opened this issue Sep 3, 2019 · 1 comment

Comments

@ewgenij87snwork
Copy link

ewgenij87snwork commented Sep 3, 2019

Hello, friends! I output data so:


<template>
	<div>
		<task
		v-for="item in items"
		v-bind:key="item.name"
		v-bind:name="item.name"
		v-bind:description="item.description"
		v-bind:func="item.func"
		/>
	</div>
</template>
<script>
import arraytask from "@/data/arraytask.json";
export default {
	name: 'arrayz',
	components: {
		'task': () => import('@/components/task')
	},
	data: function() {
		return {
			items: arraytask
		}
	},	
}
</script>

I can't uderstand how connect pagination with display my data. (Sorry, for my English)

@ewgenij87snwork
Copy link
Author

thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant