前言:有些时候在工程化开发中,我们需要读取文件里面的原始内容,比如,你有一个文件,后缀名为 .myfile,你需要拿到这个文件里的内容,该怎么处理呢。
在 vue2 中,因为 vue2 使用 vue-cli 脚手架,构建工具用的 webpack。然后对不同后缀的解析使用的不同 load,我们自己定义的后缀文件 .myfile,webpack 不知道需要用什么 load 去解析它,所以我们需要在 vue.config.js 里面配置。
在组件中导入 .myfile 文件:
html
<template>
<div>{{ myfile }}</div>
</template>
<script>
import myfile from "./xx.myfile";
export default {
data() {
return {
myfile,
};
},
};
</script>
vue.config.js 配置 load 解析后缀名为 .myfile,raw-load 专门用来拿原始内容的。
javascript
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
configureWebpack: {
module: {
rules: {
text: /\.myfile$/,
loader: "raw-loader",
},
},
},
});
在 vue3 中就很简单了,直接给导入的文件加入后缀就可以:
html
<template>
<div>{{ myfile }}</div>
</template>
<script setup>
import myfile from "./xx.myfile?raw";
</script>