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> | |
<canvas :id="id" class="park-canvas" :height="height" width="400"></canvas> | |
</template> | |
<script> | |
const BOTTOM_HEIGHT = 30 | |
const WEEKS_CN = ['一', '二', '三', '四', '五', '六', '日'] | |
// 这个函数解决 canvas 在 Retina 屏下,线条模糊的问题 |