mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
262 B
Vue
12 lines
262 B
Vue
<template>
|
|
<p v-html="dataA"/>
|
|
</template>
|
|
<script>
|
|
var x = require('x');
|
|
module.exports = { // not properly detected by the module system yet
|
|
props: ['input'],
|
|
data: function() { return { dataA: 42 + this.input } }
|
|
}
|
|
</script>
|
|
<style>
|
|
</style> |