[Vuejs]-Unable to include Vue module in PHP/HTML page: SyntaxError: import not found: VueNativeSock

0👍

The problem with using the assets folder is that the folder name could change. When you register the Vue asset you can save the instance of the registered asset. If you var_dump() this is there a path there that you can save?

vueAsset = VueAsset::register($this); 
var_dump( $vueAsset );

Leave a comment