mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-28 11:00:39 +00:00
tailwind 3 upgrade part 1
This commit is contained in:
@@ -181,9 +181,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DatatableCellImage from '/resources/js/components/Others/Tables/DatatableCellImage'
|
||||
import DatatableWrapper from '/resources/js/components/Others/Tables/DatatableWrapper'
|
||||
import ColorLabel from '/resources/js/components/Others/ColorLabel'
|
||||
import DatatableCellImage from "../Others/Tables/DatatableCellImage";
|
||||
import DatatableWrapper from "../Others/Tables/DatatableWrapper";
|
||||
import ColorLabel from "../Others/ColorLabel";
|
||||
import {Trash2Icon, Edit2Icon} from "vue-feather-icons"
|
||||
import MemberAvatar from "../FilesView/MemberAvatar";
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
@@ -67,9 +67,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DatatableCellImage from '/resources/js/components/Others/Tables/DatatableCellImage'
|
||||
import DatatableWrapper from '/resources/js/components/Others/Tables/DatatableWrapper'
|
||||
import ColorLabel from '/resources/js/components/Others/ColorLabel'
|
||||
import DatatableCellImage from "../Others/Tables/DatatableCellImage";
|
||||
import DatatableWrapper from "../Others/Tables/DatatableWrapper";
|
||||
import ColorLabel from "../Others/ColorLabel";
|
||||
import {Trash2Icon, Edit2Icon} from "vue-feather-icons"
|
||||
import MemberAvatar from "../FilesView/MemberAvatar"
|
||||
import InfoBox from "../Others/Forms/InfoBox"
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'PopoverItem',
|
||||
|
||||
@@ -14,9 +14,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import FilePreviewToolbar from '/resources/js/components/FilePreview/FilePreviewToolbar'
|
||||
import FilePreviewMedia from '/resources/js/components/FilePreview/FilePreviewMedia'
|
||||
import {events} from '/resources/js/bus'
|
||||
import FilePreviewToolbar from "./FilePreviewToolbar";
|
||||
import FilePreviewMedia from "./FilePreviewMedia";
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'FilePreview',
|
||||
|
||||
@@ -30,14 +30,14 @@
|
||||
|
||||
<script>
|
||||
import {ChevronLeftIcon, ChevronRightIcon} from 'vue-feather-icons'
|
||||
import ToolbarButton from '/resources/js/components/FilesView/ToolbarButton'
|
||||
import ImageFile from '/resources/js/components/FilePreview/Media/ImageFile'
|
||||
import PdfFile from '/resources/js/components/FilePreview/Media/PdfFile'
|
||||
import Audio from '/resources/js/components/FilePreview/Media/Audio'
|
||||
import Video from '/resources/js/components/FilePreview/Media/Video'
|
||||
import Spinner from '/resources/js/components/FilesView/Spinner'
|
||||
import ToolbarButton from "../FilesView/ToolbarButton";
|
||||
import ImageFile from "./Media/ImageFile";
|
||||
import PdfFile from "./Media/PdfFile";
|
||||
import Audio from "./Media/Audio";
|
||||
import Video from "./Media/Video";
|
||||
import Spinner from "../FilesView/Spinner";
|
||||
import {mapGetters} from 'vuex'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'FilePreviewMedia',
|
||||
|
||||
@@ -59,15 +59,15 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PopoverWrapper from '/resources/js/components/Desktop/PopoverWrapper'
|
||||
import PopoverItem from '/resources/js/components/Desktop/PopoverItem'
|
||||
import OptionGroup from '/resources/js/components/FilesView/OptionGroup'
|
||||
import Option from '/resources/js/components/FilesView/Option'
|
||||
import PopoverWrapper from "../Desktop/PopoverWrapper";
|
||||
import PopoverItem from "../Desktop/PopoverItem";
|
||||
import OptionGroup from "../FilesView/OptionGroup";
|
||||
import Option from "../FilesView/Option";
|
||||
|
||||
import ToolbarButton from '/resources/js/components/FilesView/ToolbarButton'
|
||||
import ToolbarButton from "../FilesView/ToolbarButton";
|
||||
import {XIcon, MoreHorizontalIcon} from 'vue-feather-icons'
|
||||
import {mapGetters} from 'vuex'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'FilePreviewToolbar',
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../../bus";
|
||||
import pdf from 'pdfvuer'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import {events} from '/resources/js/bus'
|
||||
import ButtonBase from "./ButtonBase";
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'AlertPopup',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
import {MenuIcon, ChevronLeftIcon, MoreHorizontalIcon} from 'vue-feather-icons'
|
||||
import SearchBar from '/resources/js/components/FilesView/SearchBar'
|
||||
import Option from '/resources/js/components/FilesView/Option'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<script>
|
||||
import TitlePreview from '/resources/js/components/FilesView/TitlePreview'
|
||||
import { mapGetters } from 'vuex'
|
||||
import { events } from '/resources/js/bus'
|
||||
import { events } from '../../bus'
|
||||
|
||||
export default {
|
||||
name: 'DragUI',
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Spinner from '/resources/js/components/FilesView/Spinner'
|
||||
import Spinner from "./Spinner";
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -25,9 +25,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MobileActionButton from '/resources/js/components/FilesView/MobileActionButton'
|
||||
import UploadProgress from '/resources/js/components/FilesView/UploadProgress'
|
||||
import {events} from '/resources/js/bus'
|
||||
import MobileActionButton from "./MobileActionButton";
|
||||
import UploadProgress from "./UploadProgress";
|
||||
import {mapGetters} from "vuex";
|
||||
|
||||
export default {
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ItemHandler from '/resources/js/components/FilesView/ItemHandler'
|
||||
import {events} from '/resources/js/bus'
|
||||
import ItemHandler from "./ItemHandler";
|
||||
import {events} from "../../bus";
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -16,10 +16,10 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MenuMobileGroup from '/resources/js/components/Mobile/MenuMobileGroup'
|
||||
import OptionGroup from '/resources/js/components/FilesView/OptionGroup'
|
||||
import MenuMobile from '/resources/js/components/Mobile/MenuMobile'
|
||||
import Option from '/resources/js/components/FilesView/Option'
|
||||
import MenuMobileGroup from "../Mobile/MenuMobileGroup";
|
||||
import OptionGroup from '../FilesView/OptionGroup'
|
||||
import MenuMobile from '../Mobile/MenuMobile'
|
||||
import Option from '../FilesView/Option'
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import FileSortingOptions from '/resources/js/components/FilesView/FileSortingOptions'
|
||||
import MenuMobileGroup from '/resources/js/components/Mobile/MenuMobileGroup'
|
||||
import MenuMobile from '/resources/js/components/Mobile/MenuMobile'
|
||||
import FileSortingOptions from "./FileSortingOptions";
|
||||
import MenuMobileGroup from "../Mobile/MenuMobileGroup";
|
||||
import MenuMobile from '../Mobile/MenuMobile'
|
||||
|
||||
export default {
|
||||
name: 'FilterSortingMobile',
|
||||
|
||||
@@ -13,8 +13,8 @@
|
||||
|
||||
<script>
|
||||
|
||||
import OptionGroup from '/resources/js/components/FilesView/OptionGroup'
|
||||
import Option from '/resources/js/components/FilesView/Option'
|
||||
import OptionGroup from "./OptionGroup";
|
||||
import Option from './Option'
|
||||
import { ArrowUpIcon } from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
import ItemList from './ItemList'
|
||||
import ItemGrid from './ItemGrid'
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
|
||||
<script>
|
||||
import Emoji from "../Others/Emoji";
|
||||
import FolderIcon from '/resources/js/components/FilesView/FolderIcon'
|
||||
import FolderIcon from "./FolderIcon";
|
||||
import {LinkIcon, MoreVerticalIcon, EyeIcon} from 'vue-feather-icons'
|
||||
import FileIconThumbnail from "./FileIconThumbnail";
|
||||
import MemberAvatar from "./MemberAvatar";
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<script>
|
||||
import MenuMobileGroup from '/resources/js/components/Mobile/MenuMobileGroup'
|
||||
import MenuMobile from '/resources/js/components/Mobile/MenuMobile'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'MobileContextMenu',
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
|
||||
<script>
|
||||
import ToolbarButton from '/resources/js/components/FilesView/ToolbarButton'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {mapGetters} from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -36,11 +36,11 @@
|
||||
<script>
|
||||
import TeamMembersPreview from "../Teams/Components/TeamMembersPreview";
|
||||
import TeamMembersButton from "../Teams/Components/TeamMembersButton";
|
||||
import ToolbarButton from '/resources/js/components/FilesView/ToolbarButton'
|
||||
import SearchBar from '/resources/js/components/FilesView/SearchBar'
|
||||
import ToolbarButton from "./ToolbarButton";
|
||||
import SearchBar from "./SearchBar";
|
||||
import {MenuIcon, ChevronLeftIcon, MoreHorizontalIcon } from 'vue-feather-icons'
|
||||
import {mapGetters} from 'vuex'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'MobileToolBar',
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import AlphabetIcon from '/resources/js/components/FilesView/Icons/AlphabetIcon'
|
||||
import AlphabetIcon from "./Icons/AlphabetIcon";
|
||||
import {
|
||||
UserMinusIcon,
|
||||
UserCheckIcon,
|
||||
|
||||
@@ -33,7 +33,6 @@
|
||||
|
||||
<script>
|
||||
import FolderUploadIcon from '/resources/js/components/FilesView/Icons/FolderUploadIcon'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {
|
||||
UploadCloudIcon,
|
||||
} from 'vue-feather-icons'
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Spinner from '/resources/js/components/FilesView/Spinner'
|
||||
import Spinner from "./Spinner";
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
import ProgressBar from '/resources/js/components/FilesView/ProgressBar'
|
||||
import { RefreshCwIcon, XIcon } from 'vue-feather-icons'
|
||||
import {mapGetters} from 'vuex'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'UploadProgress',
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PageTitle from '/resources/js/components/Index/Components/PageTitle'
|
||||
import PageTitle from "./Components/PageTitle";
|
||||
import {
|
||||
ChevronRightIcon,
|
||||
UploadCloudIcon,
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
|
||||
<script>
|
||||
import { UserIcon, CloudIcon, HardDriveIcon } from 'vue-feather-icons'
|
||||
import PageTitle from '/resources/js/components/Index/Components/PageTitle'
|
||||
import PageTitle from "./Components/PageTitle";
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PricingTables from '/resources/js/components/Index/Components/PricingTables'
|
||||
import AuthButton from '/resources/js/components/Auth/AuthButton'
|
||||
import PricingTables from "./Components/PricingTables";
|
||||
import AuthButton from "../Auth/AuthButton";
|
||||
import { CloudIcon } from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
|
||||
export default {
|
||||
name: 'MenuMobile',
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../bus'
|
||||
|
||||
import {
|
||||
ChevronLeftIcon,
|
||||
|
||||
@@ -36,14 +36,14 @@
|
||||
|
||||
<script>
|
||||
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
||||
import PopupWrapper from '/resources/js/components/Others/Popup/PopupWrapper'
|
||||
import PopupActions from '/resources/js/components/Others/Popup/PopupActions'
|
||||
import PopupContent from '/resources/js/components/Others/Popup/PopupContent'
|
||||
import PopupHeader from '/resources/js/components/Others/Popup/PopupHeader'
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import PopupWrapper from "./Popup/PopupWrapper";
|
||||
import PopupActions from './Popup/PopupActions'
|
||||
import PopupContent from './Popup/PopupContent'
|
||||
import PopupHeader from './Popup/PopupHeader'
|
||||
import ButtonBase from "../FilesView/ButtonBase";
|
||||
import AppInputText from "../Admin/AppInputText"
|
||||
import {required} from 'vee-validate/dist/rules'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../bus'
|
||||
import {mapGetters} from 'vuex'
|
||||
import axios from 'axios'
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
import AppInputSwitch from "../Admin/AppInputSwitch"
|
||||
import AppInputText from "../Admin/AppInputText"
|
||||
import SwitchInput from "./Forms/SwitchInput"
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../bus'
|
||||
import EmojiPicker from "./EmojiPicker"
|
||||
|
||||
export default {
|
||||
|
||||
@@ -47,14 +47,14 @@
|
||||
<script>
|
||||
import AppInputText from "../Admin/AppInputText";
|
||||
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
||||
import PopupWrapper from '/resources/js/components/Others/Popup/PopupWrapper'
|
||||
import PopupActions from '/resources/js/components/Others/Popup/PopupActions'
|
||||
import PopupContent from '/resources/js/components/Others/Popup/PopupContent'
|
||||
import PopupHeader from '/resources/js/components/Others/Popup/PopupHeader'
|
||||
import SelectInput from '/resources/js/components/Others/Forms/SelectInput'
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import PopupWrapper from './Popup/PopupWrapper'
|
||||
import PopupActions from './Popup/PopupActions'
|
||||
import PopupContent from './Popup/PopupContent'
|
||||
import PopupHeader from './Popup/PopupHeader'
|
||||
import SelectInput from "./Forms/SelectInput";
|
||||
import ButtonBase from "../FilesView/ButtonBase";
|
||||
import {required} from 'vee-validate/dist/rules'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../bus'
|
||||
import axios from 'axios'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -66,7 +66,7 @@ import CopyInput from '/resources/js/components/Others/Forms/CopyInput'
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import InfoBox from '/resources/js/components/Others/Forms/InfoBox'
|
||||
import {required} from 'vee-validate/dist/rules'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../bus'
|
||||
import axios from 'axios'
|
||||
|
||||
export default {
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
|
||||
<script>
|
||||
import { CameraIcon, CopyIcon, CheckIcon, SendIcon, MoreHorizontalIcon, CodeIcon } from 'vue-feather-icons'
|
||||
import { events } from '/resources/js/bus'
|
||||
import { events } from '../../../bus'
|
||||
|
||||
export default {
|
||||
name: 'CopyShareLink',
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
<script>
|
||||
import { XIcon } from 'vue-feather-icons'
|
||||
import { events } from '/resources/js/bus'
|
||||
import { events } from '../../../bus'
|
||||
|
||||
export default {
|
||||
name: 'MultiEmailInput',
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Spinner from '/resources/js/components/FilesView/Spinner'
|
||||
import Spinner from "../../FilesView/Spinner";
|
||||
|
||||
export default {
|
||||
name: 'PageTab',
|
||||
|
||||
@@ -44,18 +44,18 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PopupWrapper from '/resources/js/components/Others/Popup/PopupWrapper'
|
||||
import PopupActions from '/resources/js/components/Others/Popup/PopupActions'
|
||||
import TitlePreview from '/resources/js/components/FilesView/TitlePreview'
|
||||
import PopupContent from '/resources/js/components/Others/Popup/PopupContent'
|
||||
import PopupHeader from '/resources/js/components/Others/Popup/PopupHeader'
|
||||
import ThumbnailItem from '/resources/js/components/Others/ThumbnailItem'
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import Spinner from '/resources/js/components/FilesView/Spinner'
|
||||
import TreeMenu from '/resources/js/components/Others/TreeMenu'
|
||||
import PopupWrapper from "./Popup/PopupWrapper";
|
||||
import PopupActions from "./Popup/PopupActions";
|
||||
import TitlePreview from "../FilesView/TitlePreview";
|
||||
import PopupContent from "./Popup/PopupContent";
|
||||
import PopupHeader from "./Popup/PopupHeader";
|
||||
import ThumbnailItem from "./ThumbnailItem";
|
||||
import ButtonBase from "../FilesView/ButtonBase";
|
||||
import Spinner from "../FilesView/Spinner";
|
||||
import TreeMenu from "./TreeMenu";
|
||||
import {isArray, isNull} from 'lodash'
|
||||
import {mapGetters} from 'vuex'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../bus'
|
||||
|
||||
export default {
|
||||
name: 'MoveItemPopup',
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ToasterItem from '/resources/js/components/Others/Notifications/ToasterItem'
|
||||
import {events} from '/resources/js/bus'
|
||||
import ToasterItem from "./ToasterItem";
|
||||
import {events} from '../../../bus'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
import PopupWrapper from '/resources/js/components/Others/Popup/PopupWrapper'
|
||||
import PopupActions from '/resources/js/components/Others/Popup/PopupActions'
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../../bus'
|
||||
|
||||
export default {
|
||||
name: 'ConfirmPopup',
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
|
||||
<script>
|
||||
import {CreditCardIcon, KeyIcon, UserPlusIcon, CornerDownRightIcon, LinkIcon, XIcon, Edit2Icon, ShareIcon, UsersIcon} from 'vue-feather-icons'
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from '../../../bus'
|
||||
|
||||
export default {
|
||||
name: 'PopupHeader',
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
|
||||
<script>
|
||||
import {ChevronUpIcon, ChevronLeftIcon, ChevronRightIcon} from 'vue-feather-icons'
|
||||
import DatatableCell from '/resources/js/components/Others/Tables/DatatableCell'
|
||||
import DatatableCell from "./DatatableCell";
|
||||
import axios from "axios";
|
||||
|
||||
export default {
|
||||
|
||||
@@ -69,16 +69,16 @@
|
||||
<script>
|
||||
import AppInputText from "../Admin/AppInputText";
|
||||
import {ValidationProvider, ValidationObserver} from 'vee-validate/dist/vee-validate.full'
|
||||
import PopupWrapper from '/resources/js/components/Others/Popup/PopupWrapper'
|
||||
import PopupActions from '/resources/js/components/Others/Popup/PopupActions'
|
||||
import PopupContent from '/resources/js/components/Others/Popup/PopupContent'
|
||||
import PopupHeader from '/resources/js/components/Others/Popup/PopupHeader'
|
||||
import ThumbnailItem from '/resources/js/components/Others/ThumbnailItem'
|
||||
import ButtonBase from '/resources/js/components/FilesView/ButtonBase'
|
||||
import PopupWrapper from "../Others/Popup/PopupWrapper";
|
||||
import PopupActions from '../Others/Popup/PopupActions'
|
||||
import PopupContent from '../Others/Popup/PopupContent'
|
||||
import PopupHeader from '../Others/Popup/PopupHeader'
|
||||
import ThumbnailItem from "../Others/ThumbnailItem";
|
||||
import ButtonBase from "../FilesView/ButtonBase";
|
||||
import TeamList from "./Components/TeamList";
|
||||
import {required} from 'vee-validate/dist/rules'
|
||||
import InfoBox from "../Others/Forms/InfoBox";
|
||||
import {events} from '/resources/js/bus'
|
||||
import {events} from "../../bus";
|
||||
import axios from "axios";
|
||||
import {mapGetters} from "vuex";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user