1.1.15 • Published 5 months ago

s3-vuetify-file-browser v1.1.15

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

S3 Vuetify File Browser

Open source file manager component for Vue.js. Requires Vuetify v2.0 or higher.

This version uses S3 presigned URLs to list, get, upload data an create folders.

All presigned URLs must be signed by a server with secure access to S3, they are then fetched from the endpoints.

Forked from: here

Usage

npm i s3-vuetify-file-browser
<template>
  <file-browser :endpoints="endpoints" />
</template>

<script>
  import FileBrowser from "s3-vuetify-file-browser";

  export default {
    data: () => ({
      endpoints: {
        list: {
          url: "document/url",

          method: "get",
        },

        upload: {
          url: "document/uploadurl",

          method: "put",
        },

        download: {
          url: "document/downloadurl",

          method: "get",
        },

        download: {
          url: "document",

          method: "delete",
        },
      },
    }),

    components: {
      FileBrowser,
    },
  };
</script>
1.1.15

5 months ago

1.1.14

5 months ago

1.1.12

10 months ago

1.1.13

10 months ago

1.1.11

2 years ago

1.1.9

2 years ago

1.1.8

2 years ago

1.1.10

2 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.1

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.0

3 years ago