|
|
|
|
|
by jardaroh
2767 days ago
|
|
^
Also, With Vue you can very easily build a component library (buttons / forms / pages / etc) that can be re-used throughout your various platform versions of your application. I normally do this by making a node module in a parent directory of the application projects like so: parentDir/
node_modules/
@applicationLibrary
components/
mixins/
services/
applicationProjects/
ios/
android/
electron/
web/
server/ |
|