Daniil Shelest
Daniil Shelest

Reputation: 113

What is $options in vue and when to use it

Could you explain what is $options and when to use it in vue. I've never used it and can't understand in docs. Show me please some code

Upvotes: 5

Views: 3945

Answers (1)

Ahmad Bilal
Ahmad Bilal

Reputation: 21

$option is used for non reactive data in a vue component. Vue put hidden watcher on data members that's why we use $options .

Upvotes: 2

Related Questions