What is the meaning of mixed mapGetters syntax?
<p>I saw in the documentation that <code>mapGetters</code> can use objects (for explicit local naming) or arrays (for implicit naming) when mapping stored values to local component state ). However, the code base I'm working with uses an unfamiliar syntax where strings are mixed with arrays. </p>
<pre class="brush:php;toolbar:false;">computed() {
...mapGetters('User', ['userToken'])
}</pre>
<p>What does this syntax mean? </p>