19 lines
358 B
TypeScript
19 lines
358 B
TypeScript
/*
|
|
* @Description: {{ByRuin}}
|
|
* @Version: 2.0
|
|
* @Author: Ruin 🍭
|
|
* @Date: 2022-03-07 09:39:15
|
|
* @LastEditors: 刘引
|
|
* @LastEditTime: 2022-03-07 16:51:22
|
|
*/
|
|
import { Injectable } from "@angular/core";
|
|
|
|
@Injectable({
|
|
providedIn: "root",
|
|
})
|
|
export class StorageService {
|
|
constructor() {}
|
|
// 定义公共数据
|
|
public inputData: string = "";
|
|
}
|