" Vim syntax file
" Language: Vue.js
" Maintainer: W. Evan Sheehan
if exists("b:current_syntax")
finish
endif
syntax include @HTML syntax/html.vim
unlet b:current_syntax
syntax region template keepend start=// end="" contains=@HTML fold
syntax include @JS syntax/javascript.vim
unlet b:current_syntax
syntax region script keepend start=/" contains=@JS fold
syntax include @CSS syntax/css.vim
unlet b:current_syntax
syntax region style keepend start=/" contains=@CSS fold
let b:current_syntax = "vue"