Memory Status
Usage
You can use the useMemoryStatus function to gain access to the battery information:
import { useMemoryStatus } from 'vue-adaptive-utils';
export default {
setup() {
const info = useMemoryStatus();
}
};
The useMemoryStatus returns the following properties and methods:
TIP
The Ref Type column represents the underlying exposed type of the refs. All the exposed Refs are read-only.
| Prop | Ref Type | Fallback Value | Description |
|---|---|---|---|
| concurrency | number | undefined | The number of logical processors. |
| totalJSHeapSize | number | undefined | The total allocated heap size, in bytes.. |
| usedJSHeapSize | number | undefined | The currently active segment of JS heap, in bytes.. |
| jsHeapSizeLimit | number | undefined | The maximum size of the heap, in bytes, that is available to the context.. |
| isSupported | boolean | false | If navigator.deviceMemory is supported on this device. |
TIP
The totalJSHeapSize, usedJSHeapSize and jsHeapSizeLimit are only available in chrome and chromium based browsers.