Skip to content

Latest commit

 

History

History
71 lines (49 loc) · 1.76 KB

README.md

File metadata and controls

71 lines (49 loc) · 1.76 KB

Ecosphere Design System | Ecosphere 设计系统

A modern lightweight design system, built on the principles of minimalism with inspirations from Scandinavian architecture, handcrafted for data intensive applications.

Code Climate maintainability Code Climate technical debt GitHub language count

NPM

Translations:

Resources:

Usage

Install

npm install vue-ecosphere

Import the plugin in main.js

import { createApp } from "vue";
import Ecosphere from "vue-ecosphere";

const app = createApp(App);
app.use(Ecosphere);
app.mount("#app");

中文版

我在学习中文,但是我的中文还不好。请原谅我的错误。:sweat_smile:

用法

安装

# 最新稳定版
npm install vue-ecosphere

main.js中添加一些

import { createApp } from "vue";
import Ecosphere from "vue-ecosphere";

const app = createApp(App);
app.use(Ecosphere);
app.mount("#app");