Global reference mint-ui style is missing

after installation, main

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from "vue"
import App from "./App"
import router from "./router"
import Mint from "mint-ui";
Vue.use(Mint);

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
  el: "-sharpapp",
  router,
  components: { App },
  template: "<App/>"
})

then I don"t use styles when I use its components. Do styles have to be referenced separately

Apr.21,2022

style needs to be introduced separately

import 'mint-ui/lib/style.css'
Menu