0.0.7 • Published 3 years ago

@tevo-online/media-library v0.0.7

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

@tevo-online/media-library

天赋云通用Vue媒体库组件

Precondition

安装composition-api插件

yarn add @vue/composition-api -S

在main.js进行插件注册

import VueCompositionAPI from "@vue/composition-api";

Vue.use(VueCompositionAPI);

Install

yarn add @tevo-online/media-library -S
npm install @tevo-online/media-library --save

Usage

<template>
  <div>
    <media-library v-model="image" :token="token" />
  </div>
</template>

<script>
import MediaLibrary from "@tevo-online/media-library"

export default {
  components: {
    MediaLibrary
  },
  data() {
    return {
      token: "",
      image: ""
    };
  }
}

</script>

Props

参数说明类型可选值默认值
image / v-model绑定值,图片地址string--
tokenpassport admin登陆token,token形如 "Bearer xxx"string--
0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago