当前位置: 首页 > 知识库问答 >
问题:

Rollup、VueJS、安装Vue Portal

太叔灿
2023-03-14

如何在VueJS的Rollup中安装外部包。我正在尝试安装VuePortal,但我需要使用Vue.use(PortalVue),但我不知道放在哪里。

我尝试了一个名为rollup plugin auto external的软件包,并将其放入:

plugins: [
        ...
        autoExternal(),
        ...
    ],

我也放入了externals的对象,但什么都没有。

谢谢

共有1个答案

楚和悌
2023-03-14

使用PortalVue不需要一个汇总插件。

Vue。使用(PortalVue)应该放在入口点文件中,在那里设置根Vue实例(例如,main.jsindex.jsapp.js,等等)。

例如:

// main.js
import Vue from 'vue'
import App from './App.vue'
import PortalVue from 'portal-vue'

Vue.use(PortalVue)

new Vue({
  render: h => h(App)
}).$mount('#app')
 类似资料:
  • 我正在尝试使用rollup和vuejs创建一个vue组件库。它适用于vue2,但无法使用vue3解析css。我已经升级了package.json中的依赖项 package.json rollup.config.js 组成部分 GitHub存储库链接https://github.com/shubhadip/vue-typescript-component-library

  • Rollup 是 JavaScript 的模块 bundler,可将一小段代码编译为更大或更复杂的内容,例如库或应用程序。 它对 JavaScript 的 ES6 修订版中包含的代码模块使用了新的标准化格式,而不是先前的特殊解决方案(例如 CommonJS 和 AMD)。ES 模块使用户可以自由,无缝地结合自己喜欢的库中最有用的单个函数。

  • rollup-plugin-dev a development server for rollup why this plugin? compared to other plugins, this plugin: uses Fastify to provide the server and implement features while this means there are dependen

  • DEPRECATED We are deprecating this template in favor of the webpack one. Some things may have changed and I haven't tested this template in a while. Check the Groceries Vue app for an example of a wor

  • Framework7-VueJS Use for auth: demo/demo This app shows you example of using mobile framework - Framework7 with VueJS, Vuex, vue-router, vue-i18n to build 'personal account' application. Features webp

  • Flask-Vue.js �� compatible Vue.js v2 �� confrict a Jinja2 delimiter and Vue.js delimiter... => change Jinja2 delimiter from flask import Flaskclass CustomFlask(Flask): jinja_options = Flask.jinja_opt