How to introduce multiple plug-ins in vue through a single entry

how can multiple plug-ins in vue be introduced through a single entry?

I want to introduce it in this way in order to use that plug-in to load that plug-in is to provide these plug-ins to the outside world through plugin

import {Tips, Modal} from "plugin";

Tips and Modal are two separate plug-ins each have a .js file that defines the plug-in"s install method

Mar.29,2021

create a new plugin file, import all the required plug-ins, and export all

in a unified way.
import Tips from 'npm-a'
import Modal from 'npm-b'
import c from 'npm-c'

export {
    Tips,
    Modal,
    c
}

just use it as you wrote on the outside

import {Tips, Modal} from 'plugin';
Menu