mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
21 lines
323 B
Vue
21 lines
323 B
Vue
<template>
|
|
<p v-html="dataA"/>
|
|
</template>
|
|
<script>
|
|
import Vue from 'vue'
|
|
import Component from 'vue-class-component'
|
|
|
|
@Component({
|
|
render: (h) => { }
|
|
})
|
|
export default class MyComponent extends Vue {
|
|
message: string = 'Hello!'
|
|
|
|
get dataA() {
|
|
return 42;
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
</style>
|