File tree Expand file tree Collapse file tree 1 file changed +0
-23
lines changed
packages/runtime-core/src Expand file tree Collapse file tree 1 file changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -110,13 +110,6 @@ export interface AppConfig {
110
110
* @deprecated use config.compilerOptions.isCustomElement
111
111
*/
112
112
isCustomElement ?: ( tag : string ) => boolean
113
-
114
- // TODO remove in 3.4
115
- /**
116
- * Temporary config for opt-in to unwrap injected refs.
117
- * @deprecated this no longer has effect. 3.3 always unwraps injected refs.
118
- */
119
- unwrapInjectedRef ?: boolean
120
113
}
121
114
122
115
export interface AppContext {
@@ -212,22 +205,6 @@ export function createAppAPI<HostElement>(
212
205
}
213
206
214
207
const context = createAppContext ( )
215
-
216
- // TODO remove in 3.4
217
- if ( __DEV__ ) {
218
- Object . defineProperty ( context . config , 'unwrapInjectedRef' , {
219
- get ( ) {
220
- return true
221
- } ,
222
- set ( ) {
223
- warn (
224
- `app.config.unwrapInjectedRef has been deprecated. ` +
225
- `3.3 now always unwraps injected refs in Options API.`
226
- )
227
- }
228
- } )
229
- }
230
-
231
208
const installedPlugins = new WeakSet ( )
232
209
233
210
let isMounted = false
You can’t perform that action at this time.
0 commit comments