[Muse-UI] in vue is developed based on [Vue2.0]. It is one of the fastest front-end frameworks at the moment. It is small, API-friendly, and can be used to develop complex single-page applications.
[Related article recommendations: vue.js]
Muse UI is developed based on Vue2.0. Vue2.0 is one of the fastest front-end frameworks at the moment. It is small, API-friendly, and can be used to develop complex single-page applications.
Official website: https://muse-ui.org/#/zh-CN
Chinese documentation: https://muse- ui.org/#/zh-CN/installation
npm i muse-ui -S
import Vue from 'vue'; import MuseUI from 'muse-ui'; import 'muse-ui/dist/muse-ui.css'; Vue.use(MuseUI); new Vue({ el: '#app', render (h) { return h('mu-button', {}, 'Hello World'); } });
Related free learning recommendations:JavaScript (video)
The above is the detailed content of What is Muse-UI in vue. For more information, please follow other related articles on the PHP Chinese website!