https://github.com/alvarosabu/ionic-vue-labs
Just playing around with Vue and Ionic Awesomeness
https://github.com/alvarosabu/ionic-vue-labs
Last synced: 3 months ago
JSON representation
Just playing around with Vue and Ionic Awesomeness
- Host: GitHub
- URL: https://github.com/alvarosabu/ionic-vue-labs
- Owner: alvarosabu
- Created: 2020-10-21T07:40:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-21T09:18:36.000Z (almost 5 years ago)
- Last Synced: 2025-04-06T19:32:39.711Z (6 months ago)
- Language: Vue
- Size: 186 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

## Software version
- `node -v` : v12.16.1
- `npm -v` : v6.13.4
- `vue --version`:3.0.0-rc.10
- `ionic -v` : v6.11.8-testing.0
- `@ionic/vue -v` : v0.3.1---
# Ionic Vue 3 Labs
This app was created following the official blog post: [Announcing the (new) Ionic Vue Beta](https://ionicframework.com/blog/announcing-the-new-ionic-vue-beta/)
```bash
ionic start ionic-vue-lab sidemenu --type vue
```## Serve
```bash
ionic serve
```## Android
### Livereload on device
To test your app on a emulated or physical device you must install last version of [Android Studio](https://developer.android.com/studio).
In your bash profile, or zsh add an alias for adb
```bash
code ~/.zshrc
``````bash
alias adb='/Users//Library/Android/sdk/platform-tools/adb'
```To help it have effect run
```bash
source ~/.zshrc
```Then:
```bash
ionic capacitor run android -l --external
```