Home > Web Front-end > Vue.js > body text

What is Muse-UI in vue

coldplay.xixi
Release: 2020-11-12 11:34:14
Original
2629 people have browsed it

[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
Copy after login

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');
  }
});
Copy after login

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!

Related labels:
vue
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!