Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 683 Bytes

readme.md

File metadata and controls

48 lines (36 loc) · 683 Bytes

Vue Js Tryout

Followed a tutorial to create a Translator using Vue.js & Yandex API

To Test This

  • Create appKeys.js
$ cd tm-vue-yandex-translate-yt
$ touch src/keys/appKeys.js
  • Provide Translator API Key
#Update src/keys/appKeys.js 

const appKeys = {
  YANDEX_KEY : <YOUR_API_KEY>
}

export default appKeys
  • Install Packages Dependencies
$ cd tm-vue-yandex-translate-yt
$ yarn install

#or with npm
$ npm install
  • Run app in PROD Mode
$ cd tm-vue-yandex-translate-yt
$ yarn start-app
  • Run app in DEV Mode
$ cd tm-vue-yandex-translate-yt
$ yarn start

# Remember to run 
$ yarn build 
# After updating the Vue Source