Skip to content
Advertisement

Can we use expose method to return other reactive variables and computed properties like methods in vue 3?

I am changing my application from vue 2 to vue 3. By using composition api,i have changed my previous render function in that setup hook. After checking some documentation,I got to know that i can expose methods by using context.expose({}).

Now my questions are:

  1. How to replace created method in vue 3 composition api? (As we know, setup hook occurs beforeCreate hook but not able to understand how to do those operations inside setup hook?)
  2. Can we return reactive variables and computed properties by using context.expose?

Here is my setup script:

JavaScript

For question 1, It is my created hook and i want to do those operations inside setup.

JavaScript

Advertisement

Answer

created hook in the composition api

This one is simple, there is no created or beforeCreate hook in the composition api. It is entirely replaced by setup. You can just run your code in the setup function directly or put it in a function you call from within setup.

Are properties exposed using expose reactive

Yes. While accessing values of child components using template refs is not really the “Vue”-way, it is possible and the values passed keep their reactivity. I couldn’t find any documentation on this, so I quickly implemented a small code sandbox to try it out. See for yourself.

https://codesandbox.io/s/falling-breeze-twetx3?file=/src/App.vue

(If you encounter an error similar to “Cannot use import outside a module”, just reload the browser within code sandbox, there seems to be an issue with the code sandbox template)

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement