mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
186 B
Vue
11 lines
186 B
Vue
<template>
|
|
<p v-html="dataA"/>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['input'],
|
|
data: function() { return { dataA: 42 + this.input } }
|
|
}
|
|
</script>
|
|
<style>
|
|
</style> |