npm i google-drive-vue
App.vue
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<template> <GoogleDrive clientId="" redirectUri="http://localhost:5173/oauth2callback" maxFileSize="5242880" :allowedFormats="['image/png', 'image/jpeg', 'application/pdf']" /> </template> <script setup lang="ts"> import {GoogleDrive} from 'google-drive-vue'; import "google-drive-vue/style.css" </script> |