首页 热点资讯 义务教育 高等教育 出国留学 考研考公

关于vue-cli构建的项目静态资源引用问题以及用npm run dev启动项目的...

发布网友 发布时间:2022-04-23 12:10

我来回答

2个回答

懂视网 时间:2022-05-12 05:19

这次给大家带来vue的本地静态图片路径,使用vue本地静态图片路径的注意事项有哪些,下面就是实战案例,一起来看一下。

这里写图片描述

需求:如何components里面的index.vue怎样能把assets里面的图片拿出来。

1.在img标签里面直接写上路径:

<img src="../assets/a1.png" class="" width="100%"/>

2.利用数组保存再循环输出:

<el-carousel-item v-for="item in carouselData" :key="item.id">
 <img :src="item.url" class="carouselImg"/>
 <span class="carouselSpan">{{ item.title }}</span>
</el-carousel-item>
data: () => ({
 carouselData:[
 {url:require('../assets/a1.png'),title:'你看我叼吗1',id:1},
 {url:require('../assets/a3.png'),title:'你看我叼吗2',id:2},
 {url:require('../assets/a4.png'),title:'你看我叼吗3',id:3}
 ]
 }),

效果如下:

index.vue里面的完整代码是这个:

<template>
 <p> <p class=" block">
 <el-carousel class="carouselBlock">
 <el-carousel-item v-for="item in carouselData" :key="item.id">
 <img :src="item.url" class="carouselImg"/>
 <span class="carouselSpan">{{ item.title }}</span>
 </el-carousel-item>
 </el-carousel>
 </p>
 <footer1></footer1>
 <img src="../assets/a1.png" class="" width="100%"/>
 </p>
</template>
<script>
 import footer1 from '../components/public/footer'
 export default {
 data: () => ({
 carouselData:[
 {url:require('../assets/a1.png'),title:'你看我叼吗1',id:1},
 {url:require('../assets/a3.png'),title:'你看我叼吗2',id:2},
 {url:require('../assets/a4.png'),title:'你看我叼吗3',id:3}
 ]
 }),
 components:{
 footer1
 },
 }
</script>
<style lang="scss">
 @import '../style/mixin';
 .carouselBlock{
 width: 100%;
 height: REM(300);
 position:relative;
 .carouselImg{
 height: REM(300);
 width:100%;
 }
 .carouselSpan{
 position: absolute;
 bottom: REM(20);
 left: REM(20);
 font-size: REM(24);
 font-weight: bold;
 }
 }
 .el-carouselcontainer{
 width: 100%;
 height: REM(300);
 }
 .el-carouselitem h3 {
 color: #475669;
 font-size: 14px;
 opacity: 0.75;
 margin: 0;
 }
 .el-carouselitem:nth-child(2n) {
 background-color: #99a9bf;
 }
 .el-carouselitem:nth-child(2n+1) {
 background-color: #d3dce6;
 }
</style>

PS:下面看下Vue.js中的图片引用路径

当我们在Vue.js项目中引用图片时,关于图片路径有以下几种情形:

使用一

我们在data里面定义好图片路径

imgUrl:'../assets/logo.png'

然后,在template模板里面

<<span class="hljs-title" style="box-sizing: border-box; color: rgb(0, 0, 136);">img src="
{{imgUrl}}">

这样是错误的写法,我们应该用v-bind绑定图片的srcs属性

:src="imgUrl">

或者

<span class="hljs-title" style="box-sizing: border-box; color: rgb(0, 0, 136);">img src="../assets/logo.png">

这种方式是按照正常HTML语法引用路径,放在模板里可以被webpack打包出来。

使用二

当我们需要在js代码里面写图片路径的时候,如果我们在data里面写

imgUrl:'../assets/logo.png'

此时webpack只会把它当做字符串处理从而找不到图片地址,此时我们可以使用import引入图片路径:

:src="avatar" />
import avatar from '@/assets/logo.png'

在data里面定义

avatar: avatar

情形三

我们也可以把图片放在外层的static文件夹里面,然后在data里面定义:

imgUrl : '../../static/logo.png'
:src="imgUrl" />

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

jQuery+koa2怎么实现Ajax请求

iview的select下拉框选项错位怎么处理

热心网友 时间:2022-05-12 02:27

怎么说呢。脚手架生成的都是有配置文件的 比如NPM RUN DEV 执行的是node build/dev-server.js", 这个是在你的Packjson里配置的 就像下面的

"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js",
"unit": "karma start test/unit/karma.conf.js --single-run",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs"
},

所以你要在dev-server.js里面去配置你要启动的文件夹

静态资源的目录也是需要配置的 在config/index.js 里面

assetsSubDirectory: 'static', 这个就是配置了你的静态资源目录

脚手架生成的项目,各个路径还有权限都是配置好的。你需要自己动手去修改,有需要, 去修改配置文件,但是修改有风险,配置需谨慎

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com