joeldelpilar-tic-tac-vue
- Description:
Discover Tic Tac Vue - the ultimate way to enjoy classic Tic Tac Toe! This engaging game is built with Vue 3, offering smooth gameplay and a modern user interface. Perfect for quick fun!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createJoeldelpilarTicTacVueInstance(context, body) → {JoeldelpilarTicTacVue}
- Description:
Create a new Tic Tac Vue instance
Example
import { Context } from '@osaas/client-core';
import { createJoeldelpilarTicTacVueInstance } from '@osaas/client-services';
const ctx = new Context();
const body: JoeldelpilarTicTacVueConfig = { name: 'myinstance', ... };
const instance = await createJoeldelpilarTicTacVueInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
JoeldelpilarTicTacVueConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getJoeldelpilarTicTacVueInstance(context, name) → {JoeldelpilarTicTacVue}
- Description:
Get a Tic Tac Vue instance
Example
import { Context } from '@osaas/client-core';
import { getJoeldelpilarTicTacVueInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getJoeldelpilarTicTacVueInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the tic-tac-vue to be retrieved |
Returns:
- Service instance
(async, static) removeJoeldelpilarTicTacVueInstance(context, name)
- Description:
Remove a Tic Tac Vue instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the tic-tac-vue to be removed |