2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2016-10-27 14:11:01 +00:00
|
|
|
|
2021-02-10 11:52:50 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.LocalStorage
|
2016-10-27 14:11:01 +00:00
|
|
|
import "Database.js" as JS
|
|
|
|
|
|
|
|
ListModel {
|
|
|
|
id: listModel
|
|
|
|
Component.onCompleted: JS.dbReadAll()
|
|
|
|
}
|