I have a vue-component
vue-compoennt (vue-loader)
<template>
<p>This is a template</p>
</template>
<script>
require('main.js')
huha()
</script>
And I have
main.js
var huha = function(){
alert("this is huha");
};
alert("this is simple alert");
Here I get the 'simple alert' but in assessing huha() it is showing reference error. Can someone please help me to understand why is this happening?
Edit
I am trying to use testimonial.js as following and I am getting reference error.
<template>
<p>This is a template</p>
<div id="testimonial-slider"></div>
</template>
<script>
require('testimonial/testimonial.js')
require('testimonial/testimonial.css')
var testimonial = new Testimonial('#testimonial-slider');
</script>
<style>
p{
color: red;
}
</style>
It is giving "reference error: Testimonial is not defined"
module.exportsonly works with a compilar, like browserify. Whats your build process?