mirror of
https://github.com/status-im/codimd.git
synced 2025-02-22 02:58:17 +00:00
22 lines
218 B
Vue
22 lines
218 B
Vue
<template>
|
|
<h1>{{ message }}</h1>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HelloWorld',
|
|
|
|
data() {
|
|
return {
|
|
message: 'Hello Vue'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
h1 {
|
|
color: blue;
|
|
}
|
|
</style>
|