Git Product home page Git Product logo

Comments (8)

danielroe avatar danielroe commented on July 28, 2024 1

https://github.com/P4sca1/nuxt-plugin-provide-types

from color-mode.

P4sca1 avatar P4sca1 commented on July 28, 2024

To reproduce run yarn to install the dependencies, followed by yarn dev.
Go to app.vue and hover over $test. It has a typing of any.
Now edit nuxt.config.ts and comment out modules. $test should now have the correct typing.

from color-mode.

P4sca1 avatar P4sca1 commented on July 28, 2024

@danielroe I found out that removing the following lines resolves the issue.

declare module '#app' {
interface NuxtApp extends PluginInjection { }
}

Could you elaborate which interfaces are used by Nuxt Bridge / Nuxt 3 for TypeScript typings?

According to the docs, the following declaration would be sufficient for Nuxt 3:

export interface ColorModeInstance {
    preference: string;
    value: string;
    unknown: boolean;
    forced: boolean;
}

declare module '#app' {
  interface NuxtApp {
    $colorMode: ColorModeInstance
  }
}

declare module '@vue/runtime-core' {
  interface ComponentCustomProperties {
    $colorMode: ColorModeInstance
  }
}

export { }

I don't really know what all the other definitions are for in the types.d.ts file.

from color-mode.

P4sca1 avatar P4sca1 commented on July 28, 2024

@danielroe @pi0 Could you have a look at this? This issue really kills the DX in Nuxt 3.

from color-mode.

danielroe avatar danielroe commented on July 28, 2024

This seems to be working fine for me using your reproduction + latest color mode + rc113.

CleanShot 2022-11-11 at 18 45 13@2x

  "devDependencies": {
    "@nuxtjs/color-mode": "latest",
    "nuxt": "3.0.0-rc.13"
  }

Are you still experiencing this?

from color-mode.

P4sca1 avatar P4sca1 commented on July 28, 2024

@danielroe I upgraded the dependencies in https://github.com/P4sca1/nuxt-plugin-provide-types and still experience the issue.

However I noticed the following: When you just loaded VSCode, or restarted the Vue server (Volar: Restart Vue Server), the correct typing for $test will be there for a few seconds. After a few seconds, when you reopen the file app.vue, the typings will be gone and $test will be typed any.

from color-mode.

P4sca1 avatar P4sca1 commented on July 28, 2024
Bildschirmaufnahme.2022-11-12.um.11.33.37.mov

from color-mode.

danielroe avatar danielroe commented on July 28, 2024

This is no longer reproducible.

from color-mode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.