이 글에서는 주로 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 'mint-ui' import 'mint-ui/lib/style.css' export default { components: { 'mt-swipe': Swipe, 'mt-swipe-item': SwipeItem }, data () { return { items: [{ title: '你的名字', href: 'http://google.com', url: 'http://localhost:8080/static/img1.png' }, { title: '我的名字', href: 'http://baidu.com', url: 'http://localhost:8080/static/img2.png' }] } } } </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 }
위 내용은 제가 모든 사람을 위해 정리한 내용입니다. 앞으로 모든 사람에게 도움이 되기를 바랍니다.
관련 글:
nodejs에서 mssql 모듈 기반 캡슐화를 구현하는 방법
의 두 번째 레벨위 내용은 vue.js의 mint-ui에 캐러셀 이미지를 통합하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!