Skip to content

Instantly share code, notes, and snippets.

View nicolidin's full-sized avatar
🎯
Focusing

nicolidin

🎯
Focusing
View GitHub Profile
@nicolidin
nicolidin / .html
Created December 27, 2019 12:37
trying to use static class inside template
<template>
<div class="home">
<div v-if="Thing.foo === yourData">
<!--the error message: Property or method "Thing" is not defined on the instance
but referenced during render -->
<p>tata</p>
</div>
<div v-else>
<p>toto</p>
</div>