通过刀片Laravel中的同步访问Vue.js中的已定义变量

I want to access the option array that is synced to option value in Vue js in my blade page. I wrote a Vue js component that show properties and I want send this options to router in Laravel. code:

<a href="{{ route('cart.add',[
'options' =>  json_encode(options),
]) }}" >
  basket
</a>



 //my component

<properties :optionsValue.sync="options"  }}" /> 

How can I access to option value that defined in Vue js component. Thanks