0π
β
It looks like you have several issues here, and that you have not provided enough information to debug the overall problem. I can at least let you know about a couple of issues I see:
- In the pasted example above you are missing a closing
</template>
tag after the closing</ul>
tag. - In your users component, you never call the
getusers()
method, you only define it. Based on your code, I assume you want to setitems
as the results of thegetusers()
method.
Source:stackexchange.com