What is $options in vue and when to use it

Viewed 882

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

1 Answers

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

Related