fast-calorie/public/js/db.js

11 lines
167 B
JavaScript
Raw Normal View History

2020-09-19 21:38:26 +00:00
import Dexie from 'dexie';
const db = new Dexie('fast-calorie');
db.version(1).stores({
catalog: `value type`,
entries: `value type`
});
export default db;