Vue.component('faqs-accordion', { template: ' \ \ \ \ \
\ \
\
\
', props: ['items'], methods: { getStyle: function (str) { if (str.length <= 100) { return { "line-height": "48px", height: "48px" } } else { return { "line-height": "20px", height: "48px", "margin-top": "8px" } } }, isArray: function (myVar) { return Array.isArray(myVar); } } })