tauri_plugin_vue/
vue.rs

1// THIS FILE WAS AUTOGENERATED AND SHOULD NOT BE EDITED MANUALLY.
2//
3// Check the `codegen` command in the `tauri-store-cli` crate.
4// https://github.com/ferreira-tb/tauri-store/tree/main/crates/tauri-store-cli
5
6use tauri::{Runtime, State};
7use tauri_store::{Collection, CollectionMarker, StoreCollection};
8
9/// The Vue plugin.
10#[derive(Collection)]
11pub struct Vue<'a, R: Runtime>(pub(crate) State<'a, StoreCollection<R, VueMarker>>);
12
13/// Marker for the Vue plugin.
14pub struct VueMarker;
15
16impl CollectionMarker for VueMarker {}