vue

  • Touch and Swipe
    vue

    12 Vue.js 시작하기

     1. vue cli 설치$ npm uninstall -g vue-cli$ npm install -g @vue/cli  2. vue 프로젝트 설치$ vue create testVue CLI v4.5.11Please pick a preset: Default ([Vue 2] babel, eslint)…

  • Touch and Swipe
    vue

    6 Bootstrap-Vue로 게시판 만들기

     yarn 으로 시작하기 1. yarn 설치https://pakss328.medium.com/yarn이란-b4e8edf1638b  2. yarn global add @vue/cli-init 3.  vue init webpack bootstrap-bbs$ vue init…

  • Touch and Swipe
    vue

    5 Vue.js 믹스인(mixins) 생성 , axios , 페이지 머문시간 기록

     npm install --save axios믹스 1) api.js1234567891011121314import axios from "axios";export default {    methods: {        a…

  • Touch and Swipe
    vue

    5 Vue Pwa 구글 로그인 서비스 만들기- 3 ★

       소스 :https://github.com/braverokmc79/pwa-ex12-test 실행1) npm install2) npm run build3) serve dist 결과물        파이어…

  • Touch and Swipe
    vue

    5 ★vue vuetify firebase 회원가입 및 로그인

    fibase 문서 참조1) https://firebase.google.com/docs/auth/web/password-auth?hl=ko2) https://firebase.google.com/docs/auth/web/google-signin?hl=ko3) 백엔드 서버 nodejs functions 으…

  • Touch and Swipe
    vue

    5 Vue.js 이용전 자바스크립트 shadow Dom 활용법

     <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-sc…

  • Touch and Swipe
    vue

    4 Vue.js 컴포넌트

       <template> <div> <h1>Hello, {{title}}</h1> <div> {{htmlString}} </div> <div v-html="…

  • Touch and Swipe
    vue

    4 vue pwa vue-cli 3 을 이용하여 빠르게 PWA( 웹앱 )생성 및 https 로 파이어 베이스 호스팅 배포 하기 ★

     PWA의 필수 항목 3가지 아래 3가지를 충족해야 PWA가 될 수 있다. 1. 웹 앱 매니페스트 (Web App Manifest)  =>직접 작성2. 서비스 워커 (Service Worker…

  • Touch and Swipe
    vue

    4 Vue.js 컴포지션 API 로 공통 부분 스크립트 처리

      common.js// 컴포지션 API의 reactive를 통해 생성할 수 있으며 오직 객체만 받습니다. // reactive는 인자로 받은 객체와 완전히 동일한 프록시 객체…

  • Touch and Swipe
    vue

    4 Vue.js 카카오, 네이버 , 구글 로그인 처리

      public/index.html<!DOCTYPE html> <html lang=""> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" cont…

  • Touch and Swipe
    vue

    vue vuetify - 선택 메뉴가 있는 바닥 내비게이션 만들기 , 사용자 정보가 담기 탐색 서랍 만들기, 라우터로 멀티 페이지 관리하는 SPA 만들기 ,Vuex 로 상태값 관리하는 SPA 만들기

      1. 선택 메뉴가 있는 바닥 내비게이션 만들기   <!DOCTYPE html> <html> <head> <meta name="viewport" content="w…

  • Touch and Swipe
    vue

    Vuetify 레이아웃

      1. 기본 레이아웃    <!DOCTYPE html> <html> <head> <!-- 모바일 기기의 접속 시 화면 크기 조절을 위해 뷰포트 설정…

  • Touch and Swipe
    vue

    vue3 상탯값 관리와 Vuex

      <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script src="https://unpkg.com/vue@3/dist/vue.…

  • Touch and Swipe
    vue

    vue vuetify 페이징 처리 , 정렬처리, 검색처리 DB firebase

      vuetifyjs 테이블 페이징  https://vuetifyjs.com/en/components/data-tables/#external-sorting모던웹(NEMV) 혼자 제작 하기 3기 - 72 게시판 페이징과 정렬 처리하…

  • Touch and Swipe
    vue

    Vue firebase 와 네비게이션 가드 navigation guard

      firebase.js Vue.prototype.$isFirebaseAuth = false; onAuthStateChanged(auth, (user) => { if (user) { Vue.prototype.$isFirebaseAuth = true; console.log(&…

  • Touch and Swipe
    vue

    vue 인증을 위한 미들웨어와 액시오스 설정 axios , veutify

      AXIOShttps://axios-http.com/kr/docs/interceptors  프론트 엔드 처리plugin/axios.jsimport Vue from 'vue' import axios from 'axios' const firebaseAPI =…

  • Touch and Swipe
    vue

    ★Vue 공용에러 처리, Nodejs 공용 에러 처리 , vue-toasted

       1. 에러 메시지 출력을 위한 토스트  vue-toasted 설치https://www.npmjs.com/package/vue-toasted   2. 토스트  plugins/vue-toasted.js임의…

  • Touch and Swipe
    vue

    ★vue vuetify firebase 회원가입 및 로그인

    fibase 문서 참조1) https://firebase.google.com/docs/auth/web/password-auth?hl=ko2) https://firebase.google.com/docs/auth/web/google-signin?hl=ko3) 백엔드 서버 nodejs functions 으…

  • Touch and Swipe
    vue

    ★vue vuetify firestore crud

     vuejs + firebase 처음 시작하기   => Vue Vuetify 페이징 처리Vue Vuetify 페이징 처리,정렬처리, 검색처리 vuetify 1.5 1. firebaseConfig.js&nb…

  • Touch and Swipe
    vue

    vue3 게시판 만들기

               https://github.com/braverokmc79/vue3-project1