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 std::sync::Arc;
7use tauri::Runtime;
8use tauri_store::{Collection, StoreCollection};
9
10/// The Vue plugin.
11#[derive(Collection)]
12pub struct Vue<R: Runtime>(pub(crate) Arc<StoreCollection<R>>);