How is displayCredentialPicker bound to this instance?
If it's not props/data/methods it won't work as of yet.
Can confirm. 0.19 is completely broken.
How is
displayCredentialPickerbound to this instance?If it's not props/data/methods it won't work as of yet.
It's a computed property.
@ffxsam Can you try to create a minimal repro?

I tried, couldn't reproduce it. And now that I've been working on this Vue component more, the issue has strangely disappeared. Very odd.
OK next time try to copy your Vue file into another file, and remove as much code as possible for minimal repros. They would be more helpful for me to diagnose the issue. Thanks!
Your issue might be fixed because you upgraded to 0.19.1 which has a few fixes.
@octref Got it. It's the usage of a template string that causes the issue:
<template>
<div>
<MyComponent :desc="`Some text ${hi}`" />
</div>
</template>
<script>
export default {
computed: {
hi() {
return "hi";
}
}
};
</script>
<style>
</style>

Another broken case below. It's underlining :msg="whatever". It's not smart enough to know that I'm manually creating it in created().
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld :msg="whatever"/>
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
export default {
name: 'app',
components: {
HelloWorld
},
created() {
this.whatever = 'hey';
}
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
Shouldn’t „whatever“ be declared in the data object first?
@kinesias no, not necessarily. It's perfectly valid to set properties that are not reactive.
<MyComponent :desc="Some text ${hi}" />
That's definitely a valid bug. You can try the command "Vetur: Show corresponding virtual file and sourcemap" and it shows this snippet:
__vlsRenderHelper(__Component, function () {
"\n ";
__vlsComponentHelper("div", { props: {}, on: {}, directives: [] }, ["\n ", __vlsComponentHelper("mycomponent", { props: { "desc": template>
<this.hiv> }, on: {}, directives: [] }, []), "\n "]);
"\n \n\n \n \n \n \n \n \n \n \n \n";
});
For the second case, as @kinesias said, you didn't declare whatever in your data object.
Most helpful comment
Can confirm. 0.19 is completely broken.