微信云开发插件
This commit is contained in:
21
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/LICENSE
generated
vendored
Normal file
21
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2018-present, Yuxi (Evan) You
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
28
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/README.md
generated
vendored
Normal file
28
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/README.md
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
# @vue/runtime-core
|
||||
|
||||
> This package is published only for typing and building custom renderers. It is NOT meant to be used in applications.
|
||||
|
||||
For full exposed APIs, see `src/index.ts`. You can also run `pnpm build runtime-core --types` from repo root, which will generate an API report at `temp/runtime-core.api.md`.
|
||||
|
||||
## Building a Custom Renderer
|
||||
|
||||
```ts
|
||||
import { createRenderer } from '@vue/runtime-core'
|
||||
|
||||
const { render, createApp } = createRenderer({
|
||||
patchProp,
|
||||
insert,
|
||||
remove,
|
||||
createElement
|
||||
// ...
|
||||
})
|
||||
|
||||
// `render` is the low-level API
|
||||
// `createApp` returns an app instance with configurable context shared
|
||||
// by the entire app tree.
|
||||
export { render, createApp }
|
||||
|
||||
export * from '@vue/runtime-core'
|
||||
```
|
||||
|
||||
See `@vue/runtime-dom` for how a DOM-targeting renderer is implemented.
|
||||
8010
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js
generated
vendored
Normal file
8010
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
6271
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js
generated
vendored
Normal file
6271
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2033
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.d.ts
generated
vendored
Normal file
2033
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7976
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js
generated
vendored
Normal file
7976
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/index.js
generated
vendored
Normal file
7
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/index.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
'use strict'
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
module.exports = require('./dist/runtime-core.cjs.prod.js')
|
||||
} else {
|
||||
module.exports = require('./dist/runtime-core.cjs.js')
|
||||
}
|
||||
66
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/package.json
generated
vendored
Normal file
66
extensions/WeChat MiniGame Cloud Template/node_modules/@vue/runtime-core/package.json
generated
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"_from": "@vue/runtime-core@3.2.47",
|
||||
"_id": "@vue/runtime-core@3.2.47",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA==",
|
||||
"_location": "/@vue/runtime-core",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@vue/runtime-core@3.2.47",
|
||||
"name": "@vue/runtime-core",
|
||||
"escapedName": "@vue%2fruntime-core",
|
||||
"scope": "@vue",
|
||||
"rawSpec": "3.2.47",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "3.2.47"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@vue/runtime-dom"
|
||||
],
|
||||
"_resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz",
|
||||
"_shasum": "406ebade3d5551c00fc6409bbc1eeb10f32e121d",
|
||||
"_spec": "@vue/runtime-core@3.2.47",
|
||||
"_where": "/Users/mac/Documents/editor_3d/v3.7.3/app/modules/editor-extensions/extensions/extension/static/extension-template/vue3.x-panel/node_modules/@vue/runtime-dom",
|
||||
"author": {
|
||||
"name": "Evan You"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vuejs/core/issues"
|
||||
},
|
||||
"buildOptions": {
|
||||
"name": "VueRuntimeCore",
|
||||
"formats": [
|
||||
"esm-bundler",
|
||||
"cjs"
|
||||
]
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"@vue/reactivity": "3.2.47",
|
||||
"@vue/shared": "3.2.47"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "@vue/runtime-core",
|
||||
"files": [
|
||||
"index.js",
|
||||
"dist"
|
||||
],
|
||||
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
||||
"keywords": [
|
||||
"vue"
|
||||
],
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"module": "dist/runtime-core.esm-bundler.js",
|
||||
"name": "@vue/runtime-core",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vuejs/core.git",
|
||||
"directory": "packages/runtime-core"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"types": "dist/runtime-core.d.ts",
|
||||
"version": "3.2.47"
|
||||
}
|
||||
Reference in New Issue
Block a user