lang属性
*.vue文件有三个顶层的语言块:<template>
, <script>
, <style>
vue-loader支持使用非默认的语言,需要给语言块指定lang
属性。
- template
默认:html
- script
默认:js(借助babel默认支持ES2015[如import/export]) CommonJS风格。
- style
默认:css
src属性
可以使用src
属性在语言块中引入外部的文件,遵循CommonJS require()的路径规则。
<template src="./template.html"></template>
<style src="./style.css"></style>
<script src="./script.js"></script>