Vue mint-ui

<template>
  <div class="home-swiper">
    <div class="aaa">
          <mt-button type="default">default</mt-button>
<mt-button type="primary">primary</mt-button>
<mt-button type="danger">danger</mt-button>
    </div>


  </div>
</template>

<style scoped>

.aaa{
     height 130px;
        margin-top 1px;
}
</style>

main.js:
import Mint from "mint-ui";
Vue.use(Mint);
import "mint-ui/lib/style.css"; 


vuemint-uidivdiv.aaa

Mar.20,2021

move the imoprt css line in main.js to the top to try


clipboard.png
what kind of css? is this? No colon:


means that the css style does not exist: causes css-loader to report an error

Menu