Browse Source

Remove unnecessary method from example

pull/22398/head
enisn 1 year ago
parent
commit
a55a7f3828
No known key found for this signature in database GPG Key ID: A052619F04155D1C
  1. BIN
      docs/en/Community-Articles/2025-03-18-Using-Vue-Components/abp-js-proxy.png
  2. 6
      docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md

BIN
docs/en/Community-Articles/2025-03-18-Using-Vue-Components/abp-js-proxy.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 8.1 KiB

6
docs/en/Community-Articles/2025-03-18-Using-Vue-Components/post.md

@ -164,11 +164,6 @@ public class TodoAppService : MyTodoAppAppService, ITodoAppService
await Task.Delay(1500); await Task.Delay(1500);
return Items; return Items;
} }
public async Task<string> GetMessageAsync()
{
return "Hello World";
}
} }
``` ```
@ -189,7 +184,6 @@ public interface ITodoAppService
{ {
Task<List<TodoItem>> GetAllAsync(); Task<List<TodoItem>> GetAllAsync();
Task<TodoItem> AddTodoItemAsync(TodoItem input); Task<TodoItem> AddTodoItemAsync(TodoItem input);
Task<string> GetMessageAsync();
} }
``` ```

Loading…
Cancel
Save