This article mainly introduces how vue.js integrates the carousel chart in mint-ui. First, we need to initialize the vue project and then install mint-ui. The specific content details can be learned by learning
Initialize the vue project
##
npm install -g vue-cli vue init webpack demo # 中间会让你选npm yarn 等来安装依赖,我选的是yarn,因为它快些
Install mint-ui
yarn add mint-ui
{ "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
Open the created vue project demo and find the components/HelloWorld.vue file in src. Then change the content to the following Find two pictures, named img1.png and img2.png respectively, and put them in the static of the demo project. Then start the projectnpm run dev
Note
1. If you find that the text is all centered You can find the file App.vue and remove the centered css code inside 1. If the page has internal margins Set the body style margin: 0 auto; 1. When used on the page, you must give the class style a height , otherwise the picture will not come out. mint-swipe { height: 218px; } The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website! Related recommendations:Introduction to the process of reconstructing multi-page scaffolding based on vue cli
Using the state object of vuex The way
The above is the detailed content of About vue.js integrating carousel images in mint-ui. For more information, please follow other related articles on the PHP Chinese website!