Hello there! I'm just starting out with vue.js and exploring different JavaScript frameworks.
Recently, I came across an interesting example based on the documentation.
import modal from 'vue-semantic-modal'
export default {
components: {
modal
}
}
However, I feel more at ease using script files like this.
<script src="...some cdn link"></script>
So now, I am left wondering how to leverage it within my script file.
<script>
// struggling to figure out how to incorporate vue-semantic-modal
</script>