Home  >  Article  >  Web Front-end  >  What is Muse-UI in vue

What is Muse-UI in vue

coldplay.xixi
coldplay.xixiOriginal
2020-11-12 11:34:142688browse

[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.

What is Muse-UI in vue

[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

  • ##github address: https://github.com/museui/muse-ui

1. Install Muse-UI

npm i muse-ui -S

2. Complete introduction of

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn