We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c21673 commit 95addb0Copy full SHA for 95addb0
AspNetCoreVueMpa.Web/ClientApp/views/home/index/HelloWorld.vue
@@ -3,6 +3,9 @@
3
<b-container class="test-global-css test-scoped-css">
4
Hello {{ name }} from Vue!
5
<img src="../../../assets/images/kajan.png">
6
+ <pre class="text-white">
7
+ {{ JSON.stringify(viewModel, null, 2) }}
8
+ </pre>
9
</b-container>
10
</default-layout>
11
</template>
@@ -13,6 +16,7 @@ export default {
13
16
data() {
14
17
return {
15
18
name: "world",
19
+ viewModel: viewModel,
20
}
21
},
22
0 commit comments