In my .Vue template i'm defining a tag, however every time i try to compile it says
Module not found: Error: Can't resolve 'scss-loader'
I'm using Laravel 5.3's default implementation of Vue JS is there anything i'm missing here?
You're probably missing it and potentially node-sass as dependencies in your package.json. Try running the below in the root of your project:
npm install sass-loader node-sass --save-dev
EDIT
Use sass as the type