37 lines
988 B
HTML
37 lines
988 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<title>vue-sequence smoke 1</title>
|
|
<style>
|
|
body {
|
|
margin: 0; /* mostly for demo on mobile */
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="diagram" class="diagram">
|
|
<pre class="zenuml" style="margin: 0">
|
|
// This sample is carefully crafted. It shows a known issues: fragment stretched to
|
|
// svc (should not), because parser thinks the return statement returns to svc.
|
|
group Backend {@VPC svc @RDS rep}
|
|
group { Client }
|
|
Client->SGW."Get order by id" {
|
|
svc.Get(id) {
|
|
rep."load order" {
|
|
if(order == null) {
|
|
@return
|
|
SGW->Client:401
|
|
}
|
|
}
|
|
}
|
|
}</pre
|
|
>
|
|
</div>
|
|
<!-- built files will be auto injected -->
|
|
<script type="module" src="/src/main-cy.ts"></script>
|
|
</body>
|
|
</html>
|