美文网首页
vue2 — vue-loader

vue2 — vue-loader

作者: 守心向暖 | 来源:发表于2017-06-02 11:12 被阅读0次

    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>
    

    相关文章

      网友评论

          本文标题:vue2 — vue-loader

          本文链接:https://www.haomeiwen.com/subject/cggefxtx.html