I am attempting to implement an example from the basic usage section of https://github.com/AlbertLucianto/vue-text-highlight. However, upon opening index.html in Firefox, I am only greeted with a blank page.
You can find the code I am using at https://github.com/michaelhochleitner/vue-text-highlight-basic-usage.
The syntax snippet that I have included in my implementation is as follows:
<script>
module.exports = {
data: function () {
return {
queries: ['birds', 'scatt'],
description: 'Tropical birds scattered as Drake veered the Jeep'
};
}
}
</script>
This syntax was taken from https://v2.vuejs.org/v2/guide/single-file-components.html.
Could someone provide insight into why index.html is failing to display any content?