mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-03 20:39:48 -08:00
Inital import
This commit is contained in:
15
.vuepress/components/Foo/Bar.vue
Executable file
15
.vuepress/components/Foo/Bar.vue
Executable file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<p class="demo">
|
||||
{{ msg }}
|
||||
</p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
msg: 'Hello this is <Foo-Bar>'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
3
.vuepress/components/OtherComponent.vue
Executable file
3
.vuepress/components/OtherComponent.vue
Executable file
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<p class="demo">This is another component</p>
|
||||
</template>
|
||||
15
.vuepress/components/demo-component.vue
Executable file
15
.vuepress/components/demo-component.vue
Executable file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<p class="demo">
|
||||
{{ msg }}
|
||||
</p>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
msg: 'Hello this is <demo-component>'
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user