>  기사  >  웹 프론트엔드  >  vue.js의 mint-ui에 캐러셀 이미지를 통합하는 방법

vue.js의 mint-ui에 캐러셀 이미지를 통합하는 방법

亚连
亚连원래의
2018-06-15 13:59:462594검색

이 글에서는 주로 vue.js가 mint-ui에 캐러셀 차트를 통합하는 방법을 소개합니다. 먼저 vue 프로젝트를 초기화한 다음 mint-ui를 설치해야 합니다. 자세한 내용은

Initialize the vue project

npm install -g vue-cli
vue init webpack demo # 中间会让你选npm yarn 等来安装依赖,我选的是yarn,因为它快些

Install mint-ui

yarn add mint-ui

mint-ui가 설치되어 있으며, 바벨 설정 방법은 mint 공식 문서를 따릅니다. -ui 그냥 구성하세요

다음은 제가 구성한 .babelrc 파일입니다. 시작하면 es2015 관련 오류가 보고됩니다. 그냥 babel-preset-es2015

{
 "presets": [
 ["env", {
  "modules": false,
  "targets": {
  "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
  }
 }],
 "stage-2",
 ["es2015", { "modules": false }]
 ],
 "plugins": [["component", [
 {
  "libraryName": "mint-ui",
  "style": true
 }
 ]],"transform-vue-jsx", "transform-runtime"],
 "env": {
 "test": {
  "presets": ["env", "stage-2", "es2015"],
  "plugins": ["transform-vue-jsx", "transform-es2015-modules-commonjs", "dynamic-import-node"]
 }
 }
}

Integration

을 설치하세요. vue 프로젝트 데모를 실행하려면 src에서 Components/HelloWorld.vue 파일을 찾은 후 내용을 다음 내용으로 변경하세요

<template>
 <p>
 <mt-swipe :auto="2000">
  <mt-swipe-item v-for="item in items" :key="item.id">
  <a :href="item.href" rel="external nofollow" >
   <img :src="item.url" class="img"/>
   <span class="desc"></span>
  </a>
  </mt-swipe-item>
 </mt-swipe>
 </p>
</template>
<script>
 import {Swipe, SwipeItem} from &#39;mint-ui&#39;
 import &#39;mint-ui/lib/style.css&#39;

 export default {
 components: {
  &#39;mt-swipe&#39;: Swipe,
  &#39;mt-swipe-item&#39;: SwipeItem
 },
 data () {
  return {
  items: [{
   title: &#39;你的名字&#39;,
   href: &#39;http://google.com&#39;,   url: &#39;http://localhost:8080/static/img1.png&#39;
  }, {
   title: &#39;我的名字&#39;,
   href: &#39;http://baidu.com&#39;,   url: &#39;http://localhost:8080/static/img2.png&#39;
  }]
  }
 }
 }
</script>
<style scoped>
 img {
 width: 100%;
 }
 .mint-swipe {
 height: 218px;
 }
 .desc {
 font-weight: 600;
 opacity: .9;
 padding: 5px;
 height: 20px;
 line-height: 20px;
 width: 100%;
 color: #fff;
 background-color: gray;
 position: absolute;
 bottom: 0;
 }
</style>

이름이 img1.png와 img2.png인 두 장의 그림을 찾아 static에 넣으세요. 그런 다음 프로젝트를 시작하세요

npm run dev

브라우저를 엽니다: http://localhost:8080/

Note

1. 텍스트가 중앙에 있는 것을 발견하면

파일 App.vue를 넣고 센터링 CSS 코드를 제거하세요

1. 페이지에 내부 여백이 있는 경우

본문 스타일 여백 설정: 0 자동;

1.페이지에서 사용할 때는 클래스 스타일을 지정해야 합니다. 높이, 그렇지 않으면 사진이 나오지 않습니다.mint-swipe { height: 218px }

위 내용은 제가 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.

관련 글:

React를 사용하여 반복 렌더링을 방지하는 방법

nodejs에서 mssql 모듈 기반 캡슐화를 구현하는 방법

vue에서 지시어 기능을 구현하는 방법

구현하는 방법 js Linkage

의 두 번째 레벨

위 내용은 vue.js의 mint-ui에 캐러셀 이미지를 통합하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.