Embryo Vuejs
  • Introduction
  • Folder structure
  • Installation
  • Translate App
  • Custom Component
  • Style Customization
  • Routing/Navigation
  • Rtl
  • Credits
  • Faq (Frequently Asked Questions)
  • Still problem?
Powered by GitBook
On this page

Faq (Frequently Asked Questions)

PreviousCreditsNextStill problem?

Last updated 6 years ago

Was this helpful?

CtrlK

Was this helpful?

  1. Getting started with Algolia Registration and process.

Algolia is a hosted full-text, numerical, and faceted search engine capable of delivering real-time results from the first keystroke.

  1. Create an account on Algolia.

  2. After Signup you are get the 14 days trial and also you can update the plans. Reference Link : https://www.algolia.com/pricing​

  3. Create a Index on Algolia Dashboard. Reference Link :- https://www.algolia.com/doc/guides/indexing/indexing-overview/#indexing-via-the-dashboard​

  4. Add your products fields with values under the Index.

  5. Use the Algolia api key on your app and get the result. Go to the src -> constants -> Appconfig.js

Appconfig.js
export default {
	algoliaApiKey: '6be0576ff61c053d5f9a3225e2a90f76'
}

2. How to add more Currency in embryo?

Go to the src -> store -> Settings -> data.js

data.js
export const currencies = [
   {
      id:0,
      img: '/static/images/united-states.png',
      title:'USD',
      symbol:

4. How to add new menu in header and responsive sidebar follow these steps:-

  1. Go to the src -> store -> sidebar -> data.js

  2. Add new object in file

data.js
export const menus = [
	{
      path: '/',
      name: "message.home",
      icon: "home",
      children: null
   },
   {
      path: '/fashion',
      name:"message.fashion",
      icon: 'accessibility_new',
      children: null
   },
   {
      path: '/gadget',
      name:"message.gadgets",
      icon: 'devices',
      children: null
   },
   {
      path: '/accesory',
      name:"message.accessories",
      icon: 'party_mode',
      children: null
   }
}

"$"
},
{
id:1,
img:'/static/images/india.png',
title:"INR",
symbol:" ₹"
}
}