nativescript-vue 3.0.0-beta.0 → 3.0.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # NativeScript-Vue3 Beta
2
+
3
+ NativeScript-Vue with Vue3 support now in beta!
4
+
5
+ ## Quick start
6
+
7
+ To get started, you can use the [StackBlitz Template](https://stackblitz.com/fork/nativescript-vue3-beta)
8
+
9
+ ...or locally:
10
+
11
+ ```bash
12
+ ns create myAwesomeApp --template @nativescript-vue/template-blank@beta
13
+
14
+ cd myAwesomeApp
15
+ ns run ios|android
16
+ ```
@@ -7,6 +7,8 @@ module.exports = (webpack) => {
7
7
  webpack.useConfig("vue");
8
8
 
9
9
  webpack.chainWebpack((config) => {
10
+ config.resolve.alias.set('vue', 'nativescript-vue');
11
+
10
12
  config.plugin("VueLoaderPlugin").use(VueLoaderPlugin);
11
13
 
12
14
  config.module
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nativescript-vue",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.0-beta.1",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist/",