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
FROM node:13-alpine as base | |
LABEL maintainer="Isaak Eriksson <[email protected]>" | |
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true | |
ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium-browser | |
WORKDIR /src | |
RUN apk update && apk add --no-cache --virtual \ |
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 ref="chart" /> | |
</template> | |
<script> | |
import { Chart } from 'frappe-charts/dist/frappe-charts.esm.js' | |
import 'frappe-charts/dist/frappe-charts.min.css' | |
export default { | |
props: { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>CS 193X</title> | |
<style id="jsbin-css"> | |
body { | |
background-color: white; | |
font-family: Helvetica; | |
text-align: center; | |
} |