1.0.0 • Published 3 years ago

eva-burn111111 v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

eva

eva npm test

Build Setup

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

For detailed explanation on how things work, consult the docs for vue-loader.

安装

npm i eva-compoennts

使用

main.js 中引入

import eva from 'eva-components'
Vue.use(eva)

页面中使用
```bash
<template>
  <div id="app">
	<eva :val="msg"></eva>
  </div>
</template>
export default {
  name: "app",
  data() {
    return {
      msg:
        "eva哈哈哈",
    };
  },
  components: {
    Eva,
  },
};
1.0.0

3 years ago