I have a Vue child component that displays a bootstrap modal and requires some fields, with one of the fields being a dropdown selection. For whatever reason, the dropdown button doesn't activate, so the dropdown items don't get shown: 'aria-expand' stays false when clicked. My issue is that the code clearly works outside of the component, so I don't really understand what is going wrong. Here's a working JSfiddle of what I'm going for.
The code I'm using for my Vue component is exactly the same with the exception of
`<template>
<div>
// insert jsfiddle code here
</div>
</template>
<script>
export default{}
</script>`
The component works fine, with the modal showing when a button is pressed, its only the dropdown that doesnt work. In case its in any way relevant, I'm using single file vue components with laravel.