This component is designed to be utilized in pineapple.net.au projects only.
It needs the data from vuex store and can't be used outside the pineapple.net.au and landing pages of pineapple.net.au
yarn add pineapple-faq
App.vue
import 'pineapple-faq'
import 'pineapple-faq/dist/pineapple-faq.css'
<FAQ />
FAQ's souce data should be stored module content of vuex store
in faq section of state
faq: {
header:'We’ve Answered Some Common Questions',
button: 'Get in Touch',
goto: '#contact',
items: [
{
question: 'Text of question here...',
answer: 'Some text of answer here...'
},
{
question: 'Text of question here...',
answer: 'Some text of answer here...'
},
...
]
}
You should install the fonts and variables:
import 'pineapple-styles/css/fonts.scss'
import 'pineapple-styles/css/variables.scss'
and then install global styles:
import 'pineapple-styles'