vue-simple-acl
vue-simple-acl copied to clipboard
can not send parameter in script
Hi
I am using with Vuejs3 setup
when I wanna use like this in component
acl.permission('update-post',post_id)
it doesn't work properly
acl.js
setRule('update-post', (user,post_id) =>{ console.log('post_id',post_id); return true })
and in console I get :
post_id undedfined
hello
use this style
acl.can("update-post", [post_id]))
or
acl.permission("update-post", [post_id]))
its worked for me