This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"data":[{"id":"email-monikah-id-gmail-com","name":"Monikah.id","message":"Thank you for using Monikah.id","isShown":true}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"data":{"meta":{"user_id":"4c44cb7e-2eed-4017-8a6e-b67283a34555"}}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"data":[{"id":"email-monikah-id-gmail-com","name":"Monikah.id","message":"Thank you for using Monikah.id","isShown":true}]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"data":{"meta":{"user_id":"4c44cb7e-2eed-4017-8a6e-b67283a34555"}}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "doctor_name": "Dr. dr. Febri Endra Budi S, M.Kes.", | |
| "ops_date": "Setiap hari", | |
| "ops_time": "09.00-21.00 WIB", | |
| "platform": "WhatsApp", | |
| "contact": "08123216803" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| format: ['umd'], | |
| input: 'dist/*.vue', | |
| filename: 'js/[name].js', | |
| plugins: [ | |
| 'vue', | |
| ], | |
| vue: { | |
| css: false, | |
| template: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import vue from 'rollup-plugin-vue' | |
| import buble from 'rollup-plugin-buble' | |
| import bundleSize from 'rollup-plugin-filesize' | |
| import resolve from 'rollup-plugin-node-resolve' | |
| import css from 'rollup-plugin-css-only' | |
| import pkg from './package.json' | |
| const isProduction = !process.env.ROLLUP_WATCH // eslint-disable-line | |
| const generatePlugins = () => { | |
| return [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const path = require('path') | |
| const { GenerateSW } = require('workbox-webpack-plugin') | |
| const configWB = new GenerateSW({ | |
| swDest: 'sw.js' | |
| }) | |
| module.exports = { | |
| entry: 'demo/main.js', | |
| output: { | |
| dir: 'demo/dist', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Vue from 'vue' | |
| import App from './App.vue' | |
| import FacebookIcon from './icons/FacebookIcon.vue' | |
| Vue.component('FacebookIcon', FacebookIcon) | |
| /* global process */ | |
| if (process.env.NODE_ENV !== 'production') { | |
| Vue.config.devtools = true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div class="app"> | |
| <FacebookIcon | |
| width="36px" | |
| height="36px" | |
| color="#3b5998"/> | |
| </div> | |
| </template> | |
| <script> |