Vue.js2系でcomposition-apiを使用したコードをtypescriptで書いています。
やりたいこと
setup内で定義し、returnしたものをtemplate内で使用したいです。
v-bindしている部分などでhoge_statusやfuga_statusを使用したいです。
現状
下記のエラーが表示されてしまいます。
error
1[Vue warn]: Property or method "hoge_status" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. 2 3[Vue warn]: Property or method "fuga_status" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property.
調べたこと
公式に以下のように書かれていました。dataがwill not have accessに含まれているのが何か原因なのではと思いました。
Accessing Component Properties
When setup is executed, the component instance has not been created yet. As a result, you will only be able to access the following properties:
props
attrs
slots
emit
In other words, you will not have access to the following component options:
data
computed
methods
ですが、こちらの記事ではsetup()内で定義、returnした値をtemplate内で使用出来ている様でした。(vue3だからでしょうか?)
以下コード
component
1<template> 2 <v-row class="col"> 3 <span 4 @click="hoge_show()" 5 v-bind:class="{ active: hoge_status }" 6 > 7 Hoge 8 </span> 9 <span 10 @click="fuga_show()" 11 v-bind:class="{ active: fuga_status }" 12 > 13 Fuga 14 </span> 15 </v-row> 16</template> 17 18<script lang="ts"> 19import { defineComponent, onMounted, ref } from "@vue/composition-api"; 20 21interface Gears { 22 title: string; 23} 24 25export default defineComponent({ 26 setup() { 27 onMounted(() => { 28 hoge_show(); 29 }); 30 31 var hoge_status = ref<boolean>(false); 32 var fuga_status = ref<boolean>(false); 33 34 const hoge_gears: Gears[] = [ 35 { 36 title: "h_aaaa" 37 }, 38 { 39 title: "h_oooo" 40 }, 41 ]; 42 43 const fuga_gears: Gears[] = [ 44 { 45 title: "f_rrrr" 46 }, 47 { 48 title: "f_tttt" 49 }, 50 ]; 51 52 const hoge_show = (): void => { 53 fuga_status.value = false; 54 hoge_status.value = true; 55 }; 56 57 const ava_show = (): void => { 58 hoge_status.value = false; 59 fuga_status.value = true; 60 }; 61 62 return { 63 hoge_status, 64 fuga_status, 65 hoge_show, 66 fuga_show, 67 }; 68 } 69}); 70</script>
なぜsetup()内で定義、returnしているのにtemplateで使用できないのか?が分かりません。
vue2では対応していない書き方なのでしょうか?
どなたか知見のある方いましたら、教えていただきたいです。
よろしくお願いします。
vue 2.6.11
@vue/composition-api 1.0.0-rc.11
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。