How can we integrate VUE with AEM . Any small sample example. It should be without cdn. I need to use Maven npm plugin. So need to know how dependecy for vu json will get resolved. I tried to add below in pom and added package.json parallel to pom. But where all the js will get created or saved . Generally in standalone vue js dist folder gets created where we have required js, So with Aem how it will be done.
pom.xml
<plugin> <groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.8.0</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v8.11.1</nodeVersion>
<npmVersion>5.8.0</npmVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
</execution>
</executions>
</plugin