91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue如何實現一個單文件組件

發布時間:2022-10-25 17:09:15 來源:億速云 閱讀:165 作者:iii 欄目:開發技術

這篇文章主要介紹了Vue如何實現一個單文件組件的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Vue如何實現一個單文件組件文章都會有所收獲,下面我們一起來看看吧。

初識單文件組件

還是利用工欲善其事必先利其器 中的源碼,在 src 目錄下創建 hello.vue 文件,內容如下:

<template>
 <h3>{{ msg }}</h3>
</template>
<script>
export default {
data () {
return {
msg:'Hello Vue.js 單文件組件~'
}
}
}
</script>
<style>
h3 {
color: green;
}
</style>

然后在 app.js 中引入使用:

// ES6 引入模塊語法
import Vue from 'vue';
import hello from './hello.vue';
new Vue({
 el: "#app",
 template: '<hello/>',
 components: {
  hello
 }
});

此時項目是沒法運行的,因為 .vue 文件 webpack 是沒法是別的,它需要對應的 vue-loader 來處理才行,而且細心的朋友會發現 hello.vue 中用到了 ES6 語法,此時就需要用到相應的語法轉化 loader 將 ES6 轉化成主流瀏覽器兼容的 ES5 語法,這里就需要用到官方推薦的 babel 工具了。先安裝需要的 loader :

# hello.vue 文件中使用了 css,所以需要 css-loader 來處理,vue-loader 會自動調用
npm install vue-loader css-loader babel-loader babel-core babel-preset-env --save-dev

有的人疑惑只是使用 babel-loader 為什么還需要安裝后面這么多工具呢,這是因為很多工具都是獨立的, loader 只是為了配合 webpack 使用的橋梁,而這里 babel-core 和 babel-preset-env 才是實現 ES6 到 ES5 的核心。

我們再修改 webpack.config.js 配置如下:

module.exports = {
 // ...
 module: {
  // 這里用來配置處理不同后綴文件所使用的loader
  rules: [
   {
    test: /.vue$/,
    loader: 'vue-loader'
   },
   {
    test: /.js$/,
    loader: 'babel-loader'
   }
  ]
 }
}

對于 babel 的配置,我們還需在項目根目錄下剛創建 .babelrc 文件來配置 Babel presets 和 其他相關插件,內容如下:

{
 "presets": [ "env" ]
}

但是雖然雖然都配置好了,項目還是還是會報錯,報如下錯誤:

ERROR in ./src/hello.vue
Module build failed: Error: Cannot find module 'vue-template-compiler'

有人就不高興了,明明是按照官方提示安裝了依賴,并正確的進行配置,為什么還是會報錯呢?遇到錯誤不要怕,先閱讀下錯誤是什么,很容易發現,是因為 Cannot find module 'vue-template-compiler' ,這是因為 vue-loader 在處理 .vue 文件時,還需要依賴 vue-template-compiler 工具來處理。

剛開始我不知道官方為什么沒有直接告訴用戶需要安裝這個依賴,通過閱讀 vue-loader 才明白其 package.json 文件中是將 vue-template-compiler 和 css-loader 作為 peerDependencies ,而 peerDependencies 在安裝的時候,并不會自動安裝(npm@3.0+),只會給出相關警告,所以這個需要我們手動安裝的,當然在 .vue 文件中如果需要寫 CSS,也必須用到 css-loader ,這個也是在 peerDependencies 中。

知道問題了,直接安裝下就可以了:

npm install vue-template-compiler css-loader --save-dev

再次運行項目,頁面中出現了我們的內容,并沒報錯,ok,大功告成~

使用預處理器

我們已經學會在 .vue 中寫 css 了,那么如果使用 sass 預處理器呢?首先安裝上篇文章中提到的模塊:

npm install sass-loader node-sass --save-dev

配置只需兩步:

修改 webpack.config.js 中 vue-loader 配置

module.exports = {
 // ...
 module: {
  // 這里用來配置處理不同后綴文件所使用的loader
  rules: [
   {
    test: /.vue$/,
    loader: 'vue-loader',
    options: {
     loaders: {
      // 這里也可以使用連寫方式,但是不利于自定義話參數配置
      // scss: 'vue-style-loader!css-loader!sass-loader'
      scss: [
       {
        loader: 'vue-style-loader'
       },
       {
        loader: 'css-loader'
       },
       {
        loader: 'sass-loader'
       }
      ]
     }
    }
   },
   // ...
  ]
 }
}

給 .vue 文件中的 style 標簽,添加 lang="scss" 屬性。

配置完后,就可以再 .vue 文件中,愉快地編寫 sass 語法了。

加載全局設置文件

實際開發中,我們在編寫 sass 文件時,經常會將全局的 scss 變量提取出來,放到一個單獨的文件中,但是這樣就有個問題,每個需要用到的組件,都需要手動 @import './styles/_var.scss' 進來,非常不友好。插件 sass-resources-loader 就很好地幫我們解決這個問題,先安裝一下:

npm install sass-resources-loader --save-dev

然后修改 webpack.config.js 文件中 vue-loader 相關配置:

// ...
{
 test: /.vue$/,
 loader: 'vue-loader',
 options: {
  loaders: {
   scss: [
    {
     loader: 'vue-style-loader'
    },
    {
     loader: 'css-loader'
    },
    {
     loader: 'sass-loader'
    },
    // 看這里,看這里,看這里
    {
     loader: 'sass-resources-loader',
     options: {
      // 這里的resources 屬性是個數組,可以放多個想全局引用的文件
      resources: [resolve('./src/styles/_var.scss')]
     }
    }
   ]
  }
 }
}
// ...

配置就完成了,我們再來測試下。

在 src 目錄下分別創建 hello1.vue 和 hello2.vue 文件:

<!-- hello1.vue -->
<template>
 <h2>{{ msg }}</h2>
</template>
<script>
export default {
name:'hello1',
data () {
return {
msg:'Hello Vue.js 單文件組件~'
}
}
}
</script>
<stylelang="scss">
h2 {
color: $green;
}
</style>

<!-- hello2.vue -->
<template>
 <h2>{{ msg }}</h2>
</template>
<script>
export default {
name:'hello2',
data () {
return {
msg:'Hello Vue.js 單文件組件~'
}
}
}
</script>
<stylelang="scss">
h2 {
color: $red;
}
</style>

然后創建一個 styles 目錄,并在其中新建存放全局變量的文件 _var.scss :

$green: rgb(41, 209, 41);
$red: rgb(177, 28, 28);

接下來,在 app.js 中引用兩個組件:

import Vue from 'vue';
import hello1 from './hello1.vue';
import hello2 from './hello2.vue';
new Vue({
 el: "#app",
 template: '<div><hello1/><hello2/></div>',
 components: {
  hello1,
  hello2
 }
});

重新運行項目就可以了。

有作用域的 style

單文件組件中為我們提供了一個非常便利的功能,就是當 style 標簽添加 scoped 屬性時,標簽內的樣式將只作用于當前組件中的元素。

接著上面的例子,運行后會發現 hello1.vue 中的 h2 顏色并不是想要的 $green 色,而是被 hello2.vue 中的樣式覆蓋了。于是分別在 hello1.vue 和 hello2.vue 的 style 標簽上添加 scoped 屬性,如下:

<!-- hello1.vue -->
<stylelang="scss"scoped>
h2 {
color: $green;
}
</style>
<!-- hello2.vue -->
<stylelang="scss"scoped>
h2 {
color: $red;
}
</style>

這樣一來我們的兩個 h2 標簽顏色都顯示正常了。

自定義塊

在編寫某些開源組件時,有時候我們需要同時維護多個組件和組件說明,但是每次修改就要同時修改 .vue 和 .md 文件,相當麻煩。 .vue 文件的 自定義語言塊 功能,就允許我們將 markdown 說明同時寫進 .vue 文件中,然后通過插件將其說明部分單獨提取到相應的 .md 文件中,這樣就可以同時維護說明文檔和組件功能了。

比如我們將 hello1.vue 文件修改如下:

<docs>
 # 標題
  這是標題內容,[倉庫地址](https://github.com/yugasun/You-Dont-Know-Vuejs)
 ## 子標題
  這是子標題內容
</docs>
<template>
 <h2>{{ msg }}</h2>
</template>
<script>
export default {
name:'hello1',
data () {
return {
msg:'Hello Vue.js 單文件組件~'
}
}
}
</script>
<stylelang="scss"scoped>
h2 {
color: $green;
}
</style>

然后修改 webpack.config.js 配置:

const path = require('path');
// 引入相關插件
const ExtractTextPlugin = require('extract-text-webpack-plugin');
function resolve(dir){
 return path.resolve(__dirname, dir);
}
module.exports = {
 // 入口文件
 entry: './src/app.js',
 // 編譯輸出文件
 output: {
  path: resolve('./'),
  filename: 'build.js'
 },
 resolve: {
  alias: {
   // 因為我們這里用的是 require 引入方式,所以應該使用vue.common.js/vue.js/vue.min.js
   'vue$': 'vue/dist/vue.common.js'
  }
 },
 devServer: {
  // 這里定義 webpack-dev-server 開啟的web服務的根目錄
  contentBase: resolve('./')
 },
 module: {
  // 這里用來配置處理不同后綴文件所使用的loader
  rules: [
   {
    test: /.vue$/,
    loader: 'vue-loader',
    options: {
     loaders: {
      scss: [
       {
        loader: 'vue-style-loader'
       },
       {
        loader: 'css-loader'
       },
       {
        loader: 'sass-loader'
       },
       {
        loader: 'sass-resources-loader',
        options: {
         resources: [resolve('./src/styles/_var.scss')]
        }
       }
      ],
      docs: ExtractTextPlugin.extract('raw-loader')
     }
    }
   },
   {
    test: /.js$/,
    loader: 'babel-loader'
   }
  ]
 },
 plugins: [
  new ExtractTextPlugin('docs.md')
 ]
}

這里用到了 extract-text-webpack-plugin 導出 text 插件,和 raw-loader ,分別都安裝下就行。

然后運行構建命令 npm run build ,等運行結束,根目錄下會同時生成一個 docs.md 文件,這就是我們想編寫的說明文檔。

關于“Vue如何實現一個單文件組件”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Vue如何實現一個單文件組件”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

吴桥县| 祁门县| 望江县| 沂水县| 漳州市| 曲沃县| 盐津县| 沭阳县| 自治县| 鹤壁市| 墨竹工卡县| 灵石县| 涪陵区| 富宁县| 黑山县| 尤溪县| 平昌县| 汉源县| 仲巴县| 类乌齐县| 新河县| 景东| 通江县| 万山特区| 仙桃市| 安乡县| 沂源县| 黑河市| 崇文区| 西安市| 内黄县| 芷江| 美姑县| 老河口市| 行唐县| 卫辉市| 云林县| 海盐县| 通城县| 枣庄市| 五家渠市|