[[Options API]]で以下のようなコードになっている場合 ```ts method: { hoge() { this.$axios.get(...) } } ``` [[script setup]]だと以下のように書ける。 ```ts const root = getCurrentInstance()!.proxy! function hoge() { root.$axios.get(...) } ```