JS: Fix getOwnOptionsObject

This commit is contained in:
Asger Feldthaus
2021-08-24 12:40:32 +02:00
parent 9f02ae29ec
commit 999f22f548

View File

@@ -196,7 +196,7 @@ module Vue {
* Gets the options passed to the Vue object, such as the object literal `{...}` in `new Vue{{...})`
* or the default export of a single-file component.
*/
deprecated DataFlow::Node getOwnOptionsObject() { none() } // overridden in subclasses
deprecated DataFlow::Node getOwnOptionsObject() { result = getOwnOptions().getARhs() }
/**
* Gets the class implementing this Vue component, if any.