Giter Club home page Giter Club logo

Comments (4)

antfu avatar antfu commented on May 29, 2024 4

I have tried many way to workaround it, but it seems like the global types injection from @vue/runtime-dom can not be override by another module.

A current workaround:

<script setup lang="ts">
-import { PropType } from '@vue/composition-api'
+import type { PropType } from '@vue/runtime-core'

const props = defineProps({
  value: {
    type: Object as PropType<Record<string, boolean>>,
  },
})
</script>

Remember to use import type to remain it on type level without leaking to runtime

from unplugin-vue2-script-setup.

wobsoriano avatar wobsoriano commented on May 29, 2024

What's props.any here console.log(props.any)?

from unplugin-vue2-script-setup.

sxzz avatar sxzz commented on May 29, 2024

Emmm, typo

<template>
  <div></div>
</template>

<script setup lang="ts">
import { PropType } from '@vue/composition-api';

const props = defineProps({
  value: {
    type: Object as PropType<Record<string, boolean>>,
  },
});

type Value = typeof props.value;
// type Value = {
//     type: PropType<Record<string, boolean>>;
// } | undefined

console.log(props.value!.any);
// 类型“{ type: PropType<Record<string, boolean>>; }”上不存在属性“any”。ts(2339)

</script>

from unplugin-vue2-script-setup.

wobsoriano avatar wobsoriano commented on May 29, 2024

What happens if you try to separate the type instead

type ValueType = Record<string, boolean>

const props = defineProps({
  value: {
    type: Object as PropType<ValueType>,
  },
});

The weird thing is if you put it inline like your code, it infers the type key lol

Screen Shot 2021-08-24 at 12 35 12 AM

But if you put Record<any, any>, I think it behaves fine?

Screen Shot 2021-08-24 at 12 36 17 AM

from unplugin-vue2-script-setup.

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.