I am building controllers for sets of items. I am currently create a Javascript object, complete with functions and storing it in the data of the Vue instance. I am then passing this object like: <dynamic-table :table-object="objTable"></dynamic-table>
I am wondering if this is passed by reference or is it making a deep copy of the object every time the view is rendered.
I know VueEx might be a better solution but I am not able to use NodeJS for this project.