adv-default-theme - Theme based on Vue Element Admin for ADempiere Vue
New adv-default-theme template theme for ADempiere Vue, based on Vue Element Admin. 90% of the adv-default-theme code is locked in the Vue Element Admin library. Thanks to this, adv-default-theme can keep its flexibility, but minimize the risk of errors.
In order to use the new ADVue Theme Pos theme in your ADempiere Vue installation, you need:
-
Install
lerna
globally:yarn global add lerna
or
npm install -g lerna
-
Configure
adv-default-theme
repository as a git submodule in theme path of your ADempiere Vue workspace, and then trackdevelop
branch:git submodule add -b develop https://github.com/adempiere/adv-default-theme.git src/themes/advDefaultTheme
-
Fetch all the data:
git submodule update --init --remote
-
Generate
local.json
file from scriptgenerate-local-config.js
. Update ADempiere Vue configuration by copyinglocal.json
file fromsrc/themes/advDefaultTheme
to rootconfig
directory:node src/themes/advDefaultTheme/scripts/generate-local-config.js
-
Download all dependencies and start development server:
yarn && yarn dev
-
That's it! Now, after opening your development server (http://localhost:9527 by adv-default-theme), you should see ADempiere Vue with the adv-default-theme. 🎉
You can use this template project to create your own project.