Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

526
Views
When Importing Self Made Vue 3 Library Into Vue 3 Project: "Uncaught TypeError: Cannot read properties of null (reading 'isCE')"

I created a custom component library using Vue 3, and after installing it locally thru yarn and registering the components, I kept getting the following error in the browser devtools when using the components in the template:

Uncaught TypeError: Cannot read properties of null (reading 'isCE')

Upon researching the issue, it became apparent that the Vue community's proposed solution isn't working. I'm running the same Vue 3 version on both projects. I followed the steps to create and modify vue.config.js to alias Vue and disable symlinks, but to no avail.

module.exports = {
  chainWebpack(config) {
    config.resolve.symlinks(false);
    config.resolve.alias.set("vue", path.resolve("./node_modules/vue"));
  },
};

I followed the rabbit hole which only led to the same conclusions: either modifying vue.config.js worked, or no solution was found. The issue (mainly) seems to be with components with slots.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Try vite instead of vue-cli to create your custom lib. and keep your vue stay at devDependencies in Package.json

about 4 years ago · Juan Pablo Isaza Report

0

for me this solution solved it inside vite.config

resolve: {
        alias: {
          vue: path.resolve('./node_modules/vue'),
        },
        dedupe: ['vue'],
      },
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!