Movie Search App with Vue 3 Composition API

movie-search-vue

A movie search application showcasing the new Composition API of Vue 3.

The application is based on Vue 2 and uses the Composition API with the @vue/composition-api plugin.

For the tutorial, read the article on DEV.to.

Try it out with online editing

Usage

After installing the dependencies the following NPM scripts become available:

  • start: starts the application in development mode on http://localhost:8080
  • build: bundles the application for production into the dist folder
  • lint: lint files with ESLint

.gitignore

.DS_Store
node_modules
/dist

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.travis.yml

language: node_js
node_js:
  - "12"
before_deploy: npm run build
deploy:
  provider: pages
  local_dir: dist
  skip_cleanup: true
  github_token: $GITHUB_TOKEN  # Set in the settings page of your repository, as a secure variable
  keep_history: true
  on:
    branch: master

Download details:

Author:  vuesomedev
Source: https://github.com/vuesomedev/movie-search-vue

License: MIT license

#vue #vuejs #javascript 

Movie Search App with Vue 3 Composition API
1.50 GEEK