Prerequisite
Info |
---|
|
Steps for setup
Install the package in your project using the command shell
Code Block npm install git+https://github.com/hawksearch/vue-hawksearch.git#latest
Create a directory in your assets folder to include all Vue.js resources (e.g. assets/js/vue).
Create an index.js at a root level and add it as an entry file in webpack.config.js
Code Block module.exports = { entry: { main: [ './assets/src/js/vue/index.js' ... ] }, ... }
Create widgets folder in react resource directory (e.g. assets/js/vue/widgets) Creating widgets with Vue SDK
Add all widget references in index.js (if there aren’t any created, add these later)
Code Block import "./widgets/search-box"; import "./widgets/search-results";
Build the JS resources accordingly (e.g. npm run build)